美文网首页
2018-09-29

2018-09-29

作者: Stella_叶 | 来源:发表于2018-09-29 20:57 被阅读0次

    消除重复字段值


    1538223690.png

    模糊查询
    like
    %表示任意多个任意字符
    _表示一个任意字符
    例7:查询姓黄的学生

    select * from students where name like '黄%';
    例8:查询姓黄并且“名”是一个字的学生

    select * from students where name like '黄_';
    例9:查询姓黄或叫靖的学生

    select * from students where name like '黄%' or name like '%靖';

    相关文章

      网友评论

          本文标题:2018-09-29

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