MySQL查询数据关键字用法

         **(1)基础查询方法,格式如下:
                select.【要查询的字段】..from...【表名】
         (2)使用where查询,格式如下:
               	select..【要查询字段】...from...【表名】...where【要求】
         (3)使用in关键词,格式如下:
         		select...from....where...【字段】...in(要求)
         (4)  使用not in关键词,格式如下:
         	    select...from....where...【字段】...not in(要求)
           (5)  使用and 关键词,格式如下:
         	  	select...from....where...【字段】...(要求) and (要求)
           (6)  使用between and关键字,格式如下:
           		select...from....where...【字段】...between(要求) and (要求)
           (7)  使用is null关键词,格式如下:
                select...from....where...【字段】...is null
           (8)  使用is not null关键词,格式如下:
                select...from....where...【字段】...is not null**

你可能感兴趣的:(MySQL)