美文网首页
mysql 查询语句

mysql 查询语句

作者: sirai | 来源:发表于2017-06-23 18:13 被阅读29次
    • 条件查询
      select * from table where uname in('aaa',bbb','ccc','ddd','eee');

    • 模糊查询

    select  *  from  table  where   uname like aaa
    
    select  *  from  table  where   uname like '%程序员'
    
    
    • 查询日期型数据 注:不同数据库对日期型数据存在差异: :
    (1)MySQL:SELECT from tb_name WHERE birthday = '2011-04-08'
    (2)SQL Server:SELECT from tb_name WHERE birthday = '2011-04-08'
    (3)Access:SELECT from tb_name WHERE birthday = #2011-04-08#
    

    相关文章

      网友评论

          本文标题:mysql 查询语句

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