【郑州中心】SQL语言之数据表操作
SQL语⾔
数据表操作:创建、删除
数据操作:增加、删除、修改、简单查询
数据操作:查询
此部分中查询为重点,需要熟练掌握
SQL语⾔编写和运⾏
⿏标左键点击某个数据库下⾯的查询按钮,然后点击新建查询
在打开的查询编辑器中,编写SQL语⾔,再点击运⾏
数据表操作
创建表
create table 表名(
字段名 类型 约束,
字段名 类型 约束
...
) 例:创建学⽣表,字段要求如下:
姓名(⻓度为10)
create table students(
name varchar(10)
) 例:创建学⽣表,字段要求如下:
姓名(⻓度为10), 年龄
create table students(
name varchar(10),
age int unsigned
) 例:创建学⽣表,字段要求如下:
姓名(⻓度为10), 年龄,身⾼(保留⼩数点2位)
create table students(
id int unsigned primary key auto_increment,
name varchar(20),
age int unsigned,
height decimal(5,2)
)
格式⼀:drop table 表名
格式⼆:drop table if exists 表名
例:删除学⽣表
drop table students
或
drop table if exists students
|
|