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 IF NOT EXISTS users (\u000aid BIGINT IDENTITY NOT NULL PRIMARY KEY,\u000aemail VARCHAR(100) NOT NULL,\u000apassword VARCHAR(100) NOT NULL,\u000aname VARCHAR(100) NOT NULL,\u000acreatedAt BIGINT NOT NULL,\u000aUNIQUE (email))
INSERT INTO USERS VALUES(3,'yangjiali@dmail.com','jiali','jiali',1711957344981)
COMMIT
DELETE FROM USERS WHERE ID=3
INSERT INTO USERS VALUES(3,'yangjiali@dmail.com','jiali','zhuxixiaoxia',1711957344981)