显示有哪些数据库:show databases;
创建数据库:create database database1;
删除数据库:drop database database1;
使用数据库:use database1;
查看表:show tables;
新建表:create table table1(
idint(10)not nullprimary key auto increment ,
avarchar(20),
bint(10),
cvarchar(10)default ‘男’,
dint(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;
法语写作助手
法语助手旗下的AI智能写作平台,支持语法、拼写自动纠错,一键改写、润色你的法语作文。
31 查看详情
修改: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常用语法的详细内容,更多请关注创想鸟其它相关文章!
版权声明:本文内容由互联网用户自发贡献,该文观点仅代表作者本人。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。
如发现本站有涉嫌抄袭侵权/违法违规的内容, 请发送邮件至 chuangxiangniao@163.com 举报,一经查实,本站将立刻删除。
发布者:程序猿,转转请注明出处:https://www.chuangxiangniao.com/p/395202.html
微信扫一扫
支付宝扫一扫