MySql的使用

1、创建数据库
create database 数据库名 CHARACTER SET utf8;

2、删除数据库
drop database 数据库名;

3、创建表
create table 表名(值,值);

4、删除表
drop table 表名;

5、添加数据
insert into 表名values(值,值);

6、查看表
select * from 表名;

7、修改数据
update 表名set  值 where 条件;

8、删除数据
delete from 表名where 条件;

9、查看表的细节
show create table 表名;

10、查看表结构
desc 表名;

11、模糊查询
select * from 表名where 字段 like '%条件%';

12、排序查询
select * from 表名 order by 字段;

select * from 表名 order by 字段 desc; 

13、分组查询
select * from 表名 group by 字段 having 条件;

14、分页查询
select * from 表名 order by 字段 desc limit 索引,条数;

15、报表查询


select count(*) 和 from 表名;

 select sum(字段)  from 表名;

select avg(id)  from 表名;

select min(id)  from 表名;

select max(id)  from 表名;

上一篇:chapter3\a\pmtest1.asm


下一篇:共享中断