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

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

作者: 马幸运 | 来源:发表于2023-04-29 19:20 被阅读0次

    第八天作业 :

    继续 select

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

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

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

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

    前七天作业参考答案:

    1)查询istester表 id = 1的内容

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

    2)查询idoxu 表 grade=100 的内容

    select * from idoxu where grade =100;

    select * from idoxu where grade = 100;
    
    #用的多的形式:
    select i.* from idoxu where i.grade=100;
    
    image.png

    相关文章

      网友评论

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

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