我有两个mysql表
我的标签
- ID
- 用户代码
- tab_id
- 菲德
- 表ID
标签
- tab_id
- 标题
- 用户代码
- 访问类型
- 问题
两个表都将 tab_id 作为主键并使用相同的值。我想列出 mytabs 表中的数据,该表在 Tabs Table 和 access_type = 1 中具有相同的 tab_id。我不想列出 Tabs 中的记录,如果该 Tab 具有 access_type 1,则查询应该只从 Tabs 验证,那么它应该列出
可能吗?我正在尝试的是它没有返回任何东西。
$mysql = "select mytabs.*, tabs.* FROM mytabs, tabs where mytabs.usercode='$usercode' and (mytabs.fid IS NULL || mytabs.fid='0') and tabs.access_type = '1' order by mytabs.tablistid asc"