SQL语句
SQL 是一种为数不多的声明性语言,它的运行方式完全不同于我们所熟知的命令行语言、面向对象的程序语言、甚至是函数语言(尽管有些人认为 SQL 语言也是一种函数式语言)
SQL 语句的语法顺序和其执行顺序并不一致
- 创建一个数据库
使用 create database 语句可完成对数据库的创建, 创建命令的格式如下:create database 数据库名 [其他选项];
例如我们需要创建一个名为 samp_db 的数据库, 在命令行下执行以下命令:create database samp_db character set gbk;
为了便于在命令提示符下显示中文, 在创建时通过 character set gbk 将数据库字符编码指定为 gbk。创建成功
时会得到 Query OK, 1 row affected(0.02 sec) 的响应。
注意: MySQL语句以分号(;)作为语句的结束, 若在语句结尾不添加分号时, 命令提示符会以 -> 提示你继续输
入(有个别特例, 但加分号是一定不会错的);
- 可以使用 show databases; 命令查看已经创建了哪些数据库。
- 选择所要操作的数据库
要对一个数据库进行操作, 必须先选择该数据库, 否则会提示错误:
ERROR 1046(3D000): No database selected
命令:use 数据库名
;- 创建数据库表
使用 create table 语句可完成对表的创建, create table 的常见形式:
create table 表名称(列声明);
以创建 students 表为例, 表中将存放 学号(id)、姓名(name)、性别(sex)、年龄(age)、联系电话(tel) 这些内容:
create table students
(
id int unsigned not null auto_increment primary key,
name char(8) not null,
sex char(4) not null,
age tinyint unsigned not null,
tel char(13) null default “-“
);
- 向表中插入数据
insert 语句可以用来将一行或多行数据插到数据库表中, 使用的一般形式如下:insert [into] 表名 [(列名1, 列名2, 列名3, ...)] values (值1, 值2, 值3, ...);
有时我们只需要插入部分数据, 或者不按照列的顺序进行插入, 可以使用这样的形式进行插入:
insert into students (name, sex, age) values(“孙丽华”, “女”, 21);- 查询表中的数据
select 语句常用来根据一定的查询规则到数据库中获取数据, 其基本的用法为:select 列名称 from 表名称 [查询条件];
例如要查询 students 表中所有学生的名字和年龄, 输入语句
select name, age from students;- 更新表中的数据
update 语句可用来修改表中的数据, 基本的使用形式为:
update 表名称 set 列名称=新值 where 更新条件;
example:
将 id 为 5 的手机号改为默认的”-“:
update students set tel=default where id=5 ;
将所有人的年龄增加 1:
update students set age=age+1;
将手机号为 13288097888 的姓名改为 “张伟鹏”, 年龄改为 19:
update students set name=”张伟鹏”, age=19 w
here tel=”13288097888” ;- 删除表中的数据
delete 语句用于删除表中的数据, 基本用法为:
delete from 表名称 where 删除条件;
example:
删除 id 为 2 的行:
delete from students where id=2 ;
删除所有年龄小于 21 岁的数据:
delete from students where age<20 ;
删除表中的所有数据: delete from students ;
alter table 语句用于创建后对表的修改, 基础用法如下
- 添加列
基本形式: alter table 表名 add 列名 列数据类型 [after 插入位置] ;
example:
在表的最后追加列 address:
alter table students add address char(60) ;
在名为 age 的列后插入列 birthday:
alter table students add birthday date after age ; - 修改列
基本形式: alter table 表名 change 列名称 列新名称 新数据类型 ;
示例:
将表 tel 列改名为 telphone:
alter table students change tel telphone char(13) default “-“ ;
将 name 列的数据类型改为 char(16):
alter table students change name name char(16) not null ;- 删除列
基本形式: alter table 表名 drop 列名称 ;
示例:
删除 birthday 列: alter table students drop birthday ;
- 删除列
- 重命名表
基本形式: alter table 表名 rename 新表名 ;
示例:
重命名 students 表为 workmates:
alter table students rename workmates ;
5.删除整张表
基本形式: drop table 表名 ;
示例:
删除 workmates 表:
drop table workmates ; - 删除整个数据库
基本形式: drop database 数据库名 ;
示例:
删除 samp_db 数据库: drop database samp_db ;
最后更新: 2018年07月23日 18:15