首页 >数据库 >mysql教程 > 正文

MySQL常用语法

原创2017-08-08 16:52:490482
显示有哪些数据库:show databases;

创建数据库:create database database1;

删除数据库:drop database database1;

使用数据库:use database1;

查看表:show tables;

新建表:create table table1(

id int(10) not null primary key auto increment ,

a varchar(20),

b int(10),

c varchar(10) default '男',

d int(10)

);

查看表结构:desc student;

删除表:drop table student;

删除主键:alter table table1 drop primary key;

增加主键:alter table table1 add primary key(id);

删除字段:alter table table1 drop classid;

增加字段:alter table table1 add classid int(10);

增加记录:insert into table1(a,b,c,d) values('哈哈',1,'你好',2);

删除:delete from table1 where b = 1;

修改:update table1 set a = '哈哈哈' where b=1;

通配符 %:多个任意的字符 _:一个字符

update table1 set b = 2 where name like '%i%';

查询:

select * from table1;

select id,name from table1;

select * from table1 where b like '%i%';

排序 默认升序asc 降序desc

select * from table1 order by a asc;

select * from table1 order by a desc;

select * from table1 order by a desc,b asc;

组函数 min max count avg

select count(*) from table1;

select min(a) from table1;

select avg(a) from table1;

select max(a) from table1;

分组:select classid,avg(b) from table1 group by classid having avg(b)>5;

字句作为查询的条件:select * from table1 where age = (select min(b) from table1);

以上就是MySQL常用语法的详细内容,更多请关注php中文网其它相关文章!

php中文网最新课程二维码

声明:本文原创发布php中文网,转载请注明出处,感谢您的尊重!如有疑问,请联系admin@php.cn处理

  • 相关标签:MySQL
  • 相关文章

    相关视频


    网友评论

    文明上网理性发言,请遵守 新闻评论服务协议

    我要评论
  • 专题推荐

    作者信息

    正念的奇迹

    继续学习奋勇向前

    推荐视频教程
  • javascript初级视频教程javascript初级视频教程
  • jquery 基础视频教程jquery 基础视频教程
  • 视频教程分类