MySql教程

MySql的使用

本文主要是介绍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 表名;

这篇关于MySql的使用的文章就介绍到这儿,希望我们推荐的文章对大家有所帮助,也希望大家多多支持为之网!