我有一个12列200行的表。我想使用php / mysql有效地检查此表中的空/空字段。例如。 “(第3行第30行)为空”。有功能可以做到这一点吗?
简而言之:SELECT * FROM TABLE_PRODUCTS任何列都有空字段。

最佳答案

empty != null

select * from table_products where column is null or column='';

07-27 21:28