1. After successful login, first enter a certain database (not the database server)
use t1; //t1是数据库名
As shown in the picture:
2. Create a database table in this database
1), first create the table structure (can be understood as the column name of the table, also It is the field name) In the actual production process, the table structure needs to be carefully designed.
The common syntax format is:
CREATE TABLE table_name (column_name column_type);
For example:
create table tb3( id smallint unsigned auto_increment primary key, username varchar(20) not null4 );
2), view the created table structure
The syntax format is:
show columns from [表名];
For example:
show colums from tb3;
You can see that the table structure in table t3 contains two fields: id ,
username
;
The values of both fields are not allowed to be empty, and the id field is the primary key.
3. Record insertion and search
The table records in the database correspond to the rows in the table.
1), record insertion
The syntax format of record insertion:
inset {表名} (filed1,field2,....) values (value1,value2,....);
For example:
insert tb3 (id,username) values (4,'jona');
2), query record
Grammar format:
select {filed1,filed2,...} from {表名};
Examples are as follows:
select id,username from tb3;
The above is the detailed content of How to create a table in MySQL database?. For more information, please follow other related articles on the PHP Chinese website!