首页 > 代码库 > Mysql 基本操作

Mysql 基本操作

学校学习的SQL 几年不用又还给老师了,重温一下SQL的基本操作,数据库是Mysql

参考文章:http://www.cnblogs.com/mr-wid/archive/2013/05/09/3068229.html#d10

 

创建表:

create table students
	(
		id int unsigned not null auto_increment primary key,
		title char  not null,
		url varchar not null,
		leve1 char not null, 
leve2 char not null,
);

Mysql 基本操作