MYSQL至少对于一列不为null

时间:2016-07-01 04:34:58

标签: mysql where-clause notnull

有一个交叉连接表需要捕获特定列至少有一个not null值的行:

where books.id is not null 
or typings.id is not null
or translates.id is not null

是否有任何函数或方法可以防止where子句中的重复not null

这样的事情:
where at_Least_not_Null_One_Of(books.id,typigns.id,translates.id)

1 个答案:

答案 0 :(得分:4)

使用COALESCE

COALESCE(books.id,typigns.id,translates.id) IS NOT NULL