sql怎么查詢?yōu)榭罩档臄?shù)據(jù)?
1、首先需要?jiǎng)?chuàng)建數(shù)據(jù)庫表t_user_info,利用創(chuàng)建表sql語句create table。
2、向數(shù)據(jù)庫表里插入數(shù)據(jù),按照插入SQL語句insert into 執(zhí)行。
3、插入完畢后,查詢數(shù)據(jù)庫表記錄select 字段 from table。
4、查詢數(shù)據(jù)庫表t_user_info用戶地址為空的記錄select * from table from 字段 is null。
5、查詢數(shù)據(jù)庫表t_user_info用戶電話不為空的記錄,select * from table where 字段 is not null。
6、查詢數(shù)據(jù)庫表t_user_info電話不為空且地址為空的記錄,select * from table where 字段 is not null and 字段 is null。