Reviewer SQL
Reviewer SQL
SHOW DATABASES;
CREATE TABLE member ( id int primary key auto_increment, name varchar (50)
not null, price float not null); member is the table name
ID Name Price
1 Robert 6.7
ID Name Price
1 Robert 6.7
2 Anna 7.9
ID Name Price
1 Robert 6.7
ALTER TABLE ADD COLUMN last varchar (20) not null; to add a column
ID Name Price
1 John 6.7