Several mysql statements commonly used in PHP. Several mysql statements commonly used in PHP show the database or table: showdatabases; then you can usedatabase_name; showtables; change the table name: altertable_namerenamenew_t; add several mysql statements commonly used in PHP
Display database or table:
Show databases; // You can then use database_name;
Show tables;
Change Table name:
Alter table table_name rename new_t;
Add column:
Alter table table_name add column c_n column attributes;
Delete column:
Alter table table_name drop column c_n;
Create an index:
Alter table c_table add index (c_n1, c_n2 );
Alter table c_table add unique index_name (c_n );
Alter table c_table add primary key (sid );
Delete an index:
Alter table c_table drop index c_n1;
Change column information:
Alter table t_table change c_1 c_1 varchar (200 );
Alter table t_table modify 1 c_1 varchar (200 );
Insert statement:
Insert into table_name (c_1, c_2)
Values (x1, 1 );
Update statement:
Update table_name set c_1 = 1 where c_2 = 3;
Delete a database or table:
Drop table table_name;
Drop database database_name; // data that can be deleted using mysql_drop_db.
Export mysql statement to display database or table: show databases; // then you can use database_name; show tables; change table name: alter table table_name rename new_t; add column...