You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
CREATE TABLE user\u000a(\u000a id INT PRIMARY KEY NOT NULL IDENTITY,\u000a column_2 INT NOT NULL,\u000a column_3 INT NOT NULL,\u000a column_4 INT NOT NULL\u000a)
DISCONNECT
/*C6*/SET SCHEMA PUBLIC
INSERT INTO USER VALUES(0,2,2,3)
COMMIT
INSERT INTO USER VALUES(1,2,3,4)
COMMIT
/*C7*/SET SCHEMA PUBLIC
DISCONNECT
/*C8*/SET SCHEMA PUBLIC
DISCONNECT
/*C9*/SET SCHEMA PUBLIC
DROP TABLE PUBLIC.USER
DISCONNECT
/*C6*/DISCONNECT
/*C10*/SET SCHEMA PUBLIC
CREATE TABLE table_name\u000a(\u000a column_1 INT NOT NULL,\u000a column_2 INT NOT NULL,\u000a column_3 INT NOT NULL,\u000a column_4 INT NOT NULL,\u000a column_5 INT NOT NULL,\u000a column_6 INT NOT NULL\u000a)