美文网首页
810.【技术】常见mysql命令21天打卡-第九天

810.【技术】常见mysql命令21天打卡-第九天

作者: 马幸运 | 来源:发表于2023-05-01 13:30 被阅读0次

    第九天作业 :

    1)找出idoxu表中,分数最高的同学和分数

    2)找出idoxu表中,分数最低的同学和分数

    第八天作业答案参考 ,

    1)查找idoxu表,名称(c_name)包含 “i” 的数据

    select * from idoxu where c_name like '%i%';
    #用的多的形式:
    select i.* from idoxu i where c_name like '%i%';
    

    2)查找istester表,id 包含 “1” 的数据

    select *from istester where id like '%1%';
    #用的多的形式:
    select i.* from istester i where i.id like '%1%';
    

    **3)查找istester表,id 包含 “1” 的数据,按id降序 **

    select * from istester where id like '%1%' order by in desc;
    
    #用的多的形式:
    select i.* from istester i where i.id like '%1%' order by in desc; 
    

    4)查找istester表,id 包含 “1” 的数据 ,取id最大的三个

    select * from istester where id like '%1%' order by id desc limit 3;
    #用的多的形式:
    select i.* from istester i where id.i like '%1%' order by id desc limit 3;
    

    select * from istester where id like ‘%1%’ order by id desc limit 3 ;

    image.png

    今天有踩坑:在SQL语句结尾不小心点击了'。导致没有SQL语句没有办法结束。
    百度查询没有结果,自己试的在输入“ ' ”,即可结束当前SQL语句。
    留下一个小问题:这个’是什么意思呢?又需要'来结束具体是怎么回事?带思考。

    已经找到答案了。“ ' ”是字符串的开始,必须识别到另外一个“ ' ”,表示字符串输入结束。在加上";",可以跳出的当前的SQL语句

    相关文章

      网友评论

          本文标题:810.【技术】常见mysql命令21天打卡-第九天

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