We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent d72a3ce commit b8ecdb8Copy full SHA for b8ecdb8
resources/drop_sample_tables.sql
@@ -0,0 +1,20 @@
1
+
2
3
+-----------------------------------------------------------
4
+-- 외래키 삭제
5
6
+ALTER TABLE OrderDetails DROP CONSTRAINT FK_OrderDetails_Orders;
7
+ALTER TABLE Orders DROP CONSTRAINT FK_Orders_Customers;
8
9
10
11
12
+-- 테이블 삭제
13
14
+DROP TABLE OrderDetails;
15
+DROP TABLE Orders;
16
+DROP TABLE Customers;
17
18
19
20
0 commit comments