精品熟女碰碰人人a久久,多姿,欧美欧美a v日韩中文字幕,日本福利片秋霞国产午夜,欧美成人禁片在线观看

mysql查詢字段是否為空

mysql查詢字段是否為空

mysql查詢字段是否為空的方法:

1、不為空

select   *   from   table_name where id<>''
select   *   from   table_name where id!=''

2、為空

select   *   from   table_name where id=''
select   *   from   table_name where   isnull(id)

具體情況具體分析,如果字段是char和varchar型用 id=''可以;如果是int型用 isnull好些

下一節(jié):mysql怎么查詢數(shù)據(jù)庫有多少表

數(shù)據(jù)庫技術(shù)

相關(guān)文章