1234

作者: xueyueshuai | 来源:发表于2019-04-24 16:13 被阅读0次

insert into user(username,password) values('','');

insert into user(username,password) values('',''),('','');

delete from user where id = 1;

update user set username='222',password='123456' where id = 1;

select [all|distinct] * from user [where id=1]

  [group by sex having id>3]

  [order by id  [|desc]]

  [limit n,m];

                            in(1,2,3)

                between(100,200)

模糊查询  字段名 like '%a%';

select id,name,age,sex,concat(id,'号叫',name,'---',age,'岁') as aa from user; //查询添加新字段

select id,name,age,if(sex=0,'man','woman') as sex from user; //查询结果sql里if判断

select * from (select id,name,age,if(sex=0,'man','woman') as sex from user) aa where aa.id=1; //查询再查询

select id,name,age,(case when sex=0 then 'man' when sex=1 then 'nv' else 'qita' end ) as sex from user;     //case在sql里的语法

select group_concat(id) from user;                                                                          // 字符串 “1,2,3,4,5,6”

相关文章

  • 题目

    1234 标题1 1234 标题2 1234

  • 身份证号的格式化输入

    123456 1234 1234 1234 格式 6-4-4-4的输入

  • 6右手16分音符的演奏节奏及其注意事项

    ☞右手16分音符的演奏节奏 节奏为1234 1234 1234每一拍弹4下

  • 1234

    ;一二

  • 1234

    配置 GitHub 进入 https://github.com/settings/keys 如果页面里已经有一些 ...

  • 1234

    Tens of thousands of people have joined nationwide protes...

  • 1234

    1234

  • 1234

    import { createSwitchNavigator } from "react-navigation";...

  • 1234

    咖啡一二三四杯 唱歌一二三四首 回味一二三四次 你不理我 我不理你 终于,还是按耐不住 主动对你 从别人口中得知你...

  • 1234

    我们都会有些不

网友评论

    本文标题:1234

    本文链接:https://www.haomeiwen.com/subject/vniggqtx.html