开发者

how to select a particular null value from the table containing null values

开发者 https://www.devze.com 2023-03-03 18:30 出处:网络
how to selecta particular null value from the ta开发者_StackOverflow社区ble containing null valuesYou can select on the other columns, but of course all NULL values are the same.You can use is null .

how to select a particular null value from the ta开发者_StackOverflow社区ble containing null values


You can select on the other columns, but of course all NULL values are the same.


You can use is null .

For example , select * from tableA where columnA IS NULL will select all the rows from table A which columnA has a null value.

0

精彩评论

暂无评论...
验证码 换一张
取 消