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
tk.MustExec(`CREATE TABLE employees (id INT NOT NULL AUTO_INCREMENT PRIMARY KEY,fname VARCHAR(25) NOT NULL,lname VARCHAR(25) NOT NULL,store_id INT NOT NULL,department_id INT NOT NULL
210
+
) PARTITION BY RANGE(id) (
211
+
PARTITION p0 VALUES LESS THAN (5),
212
+
PARTITION p1 VALUES LESS THAN (10),
213
+
PARTITION p2 VALUES LESS THAN (15),
214
+
PARTITION p3 VALUES LESS THAN MAXVALUE
215
+
);`)
216
+
tk.MustExec(`INSERT INTO employees(FNAME,LNAME,STORE_ID,DEPARTMENT_ID) VALUES
0 commit comments