File tree 2 files changed +26
-1
lines changed
2 files changed +26
-1
lines changed Original file line number Diff line number Diff line change 1
- CREATE TABLE mysql_test1 .customers_copy
1
+ CREATTABLE customers_copy
2
+ CREATTABLE customers_copy
3
+ CREATTABLE customers_copy
4
+ CREATTABLE customers_copy
5
+ CREATTABLE customers_copy
6
+ CREATTABLE customers_copy
7
+ LIKE mysql_test1 .customers ;
8
+ LIKE mysql_test1 .customers ;
9
+ LIKE mysql_test1 .customers ;
10
+ LIKE mysql_test1 .customers ;
11
+ LIKE mysql_test1 .customers ;
12
+ LIKE mysql_test1 .customers ;
13
+ LIKE mysql_test1 .customers ;
14
+ LIKE mysql_test1 .customers ;
15
+ LIKE mysql_test1 .customers ;
2
16
LIKE mysql_test1 .customers ;
Original file line number Diff line number Diff line change
1
+ CREATE TABLE orders
2
+ (
3
+ order_id INT NOT NULL AUTO_INCREMENT,
4
+ order_product CHAR (50 ) NOT NULL ,
5
+ order_product_type CHAR (50 ) NOT NULL ,
6
+ cust_id INT NOT NULL ,
7
+ order_date DATETIME NOT NULL ,
8
+ order_price DOUBLE NOT NULL ,
9
+ order_amount INT NOT NULL ,
10
+ CONSTRAINT PRIMARY_KEY_ORDERS PRIMARY KEY (order_id)
11
+ );
You can’t perform that action at this time.
0 commit comments