我正在尝试查询数据库以仅选择 show = 0 的记录
这是我的查询,但它为显示列返回 0 和 1
SELECT * FROM menu WHERE 'SHOW' = 0;
表结构:
Table: menu
Columns:
id int(2) AI PK
url text
name text
title text
show int(1)
表中数据
| id | url | name | title | show |
------------------------------------------
| 1 | /index.php | Home | Home | 0 |
| 2 | /index2.php | Home | Home2 | 1 |