MySQL常用语法

正念的奇迹
发布: 2017-08-08 16:52:49
原创
1330人浏览过

显示有哪些数据库: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中文网其它相关文章!

最佳 Windows 性能的顶级免费优化软件
最佳 Windows 性能的顶级免费优化软件

每个人都需要一台速度更快、更稳定的 PC。随着时间的推移,垃圾文件、旧注册表数据和不必要的后台进程会占用资源并降低性能。幸运的是,许多工具可以让 Windows 保持平稳运行。

下载
相关标签:
来源:php中文网
本文内容由网友自发贡献,版权归原作者所有,本站不承担相应法律责任。如您发现有涉嫌抄袭侵权的内容,请联系admin@php.cn
作者最新文章
最新问题
开源免费商场系统广告
热门教程
更多>
最新下载
更多>
网站特效
网站源码
网站素材
前端模板
关于我们 免责申明 意见反馈 讲师合作 广告合作 最新更新
php中文网:公益在线php培训,帮助PHP学习者快速成长!
关注服务号 技术交流群
PHP中文网订阅号
每天精选资源文章推送
PHP中文网APP
随时随地碎片化学习
PHP中文网抖音号
发现有趣的

Copyright 2014-2025 https://www.php.cn/ All Rights Reserved | php.cn | 湘ICP备2023035733号