- use ***; 使用xxx库。
2.show databases;
3.创建数据库 create database **;
4.删除数据库 Drop database **;
5.use test
6.创建表
create table tablename(
col_name type not null auto_increment,
col_name type default,
primary key(col_name)
);
7 查看表结构 desc ***;
8.修改表明 alter table<旧表名>rename[to]<新表名>;
9.添加主键 alter table *** add primary key(id);
10 删除主键 alter table *** drop primary key; - 删除表 drop table ***;
12.重新创建表 create table users(username varchar(10),password varchar(10));
13.添加有完整性约束条件的字段 alter table users add id int(10) primary key;
14.添加自增 alter table tablename [id] [id datatyoe auto_increment];
15 insert into tablename(col_name,col_name) values(‘value1’,‘value2’);
16 查询所有数据 select* from tablename;
17.进行修改 若不用where全部修改, 其中where特定哪行。
update tablename set col_name=‘zwss’ where id=1;
例:修改账户名和密码
18 删除 delete from tablename where id = **;
19 调用静态函数
调用时间 select now();
调用π select pi();
求25的平方根 select sqrt(25);
等等…
select ‘some string’;
select 1+1;
select now();
select curdate();
select curtime();
select pi();
select mod(45,7);
select sqrt(25);20.限制 (当数量太多时,限制数量)
21 id+1
22 连接 concat
23 截取 left
24 长度 length
25 翻转
26 替换
27 季节
28 小于查询
29 不显示20
30 字符串查找
31 逻辑运算 and
or
in 一个范围
between ** and **
32 模糊查询 Like
%代表多个字符
_代表占字符位