建库、建表、插入、查询数据一键操作

格式:

create database 数据库名 charset utf8; use 数据库名; create table 表名(字段名1 字段类型 [字段属性], 字段名2 字段类型 [字段属性], ....); insert into 表名(字段名1, 字段名2, ...)
values(值1, 值2, ...); select * from 表名;

例如1:

create database demo1 charset utf8; use demo1; create table info(id int  auto_increment primary key, title varchar(50), email varchar(20), content text); insert into info( id, title, email, content)
values(null, '今天我们可以不上自习吗?', '[email protected]', '不可以!'); select * from info;

之后可以做其他操作

你可能感兴趣的:(mysql,linux)