/ Published in: MySQL
Syntax used to create a table in MySQL. Replace column names as appropriate. Primary key should also be modified to suite needs.
Expand |
Embed | Plain Text
CREATE TABLE people (`first_name` CHAR(20), `last_name` CHAR(20), `bus_phone1` CHAR(20), `email` CHAR(30), PRIMARY KEY (`email`));
You need to login to post a comment.
