原文:http://www.weiruoyu.cn/?p=451


创建一个表

create table student(id int, name varchar(20),age int);

添加数据

insert into student values (1,2,3);