标签: mysql where-clause notnull
有一个交叉连接表需要捕获特定列至少有一个not null值的行:
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)
答案 0 :(得分:4)
使用COALESCE:
COALESCE
COALESCE(books.id,typigns.id,translates.id) IS NOT NULL