Simple MySql - Simple PHP
IdTopicSyntaxExample
1delting a table...drop table (table name)drop table customers
2delting a table...drop table if exists (table name)drop table if exists customers
3addiing a field to an existing tablealter table (table name) add (field) (type) alter table customers add cust_name varchar(30)