Java教程

数据库查询

本文主要是介绍数据库查询,对大家解决编程问题具有一定的参考价值,需要的程序猿们随着小编来一起学习吧!

基本查询语句:select 字段 from 数据表名  where 条件 group by  结果分组

having  查询时满足的第二条件 order by 排序  limit    限定输出结果

带IN关键字的查询

        select * from 表名 where 条件  [not] in (字段值)

带between and 的范围查询

        select * from 表名 where  条件 between  取值  1 and 取值2

带Like的查询

         select * from 表名  where 条件 like ' ';

用is null关键字查询空值

           select * from  表名  where 条件 is null;

去重

           select  distinct  字段  from  表名

这篇关于数据库查询的文章就介绍到这儿,希望我们推荐的文章对大家有所帮助,也希望大家多多支持为之网!