标签: php mysql
我在SQL中有一个products表。 我想在表的product_variant列中显示值不为1的产品。
我的产品表中有一个product_variant列。我只想显示product_variant中值不为1的产品。
$query = query(" SELECT * FROM products WHERE product_variant != 1 "); confirm($query);
什么都没发生。