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
DROP DATABASE foo;CREATE DATABASE foo;USE foo;CREATE TABLE Books ( id int NOT NULL auto_increment primary key, title varchar(25) NOT NULL, subtitle varchar(25), user_id int);INSERT INTO Books (title, subtitle, user_id) VALUES ("love","Maverick",5901), ("happy","promise",5902);DESCRIBE Books;SELECT * from Books;ALTER TABLE Books DROP subtitle;DESCRIBE Books;