我需要帮助编写sql查询以获取show id 1的类别

时间:2015-11-11 22:13:28

标签: php mysql sql visual-web-developer

使用以下表格:

the tables are linked for this database

1 个答案:

答案 0 :(得分:0)

SELECT category.*
FROM category
INNER JOIN show_category ON show_category.category_id = category.category_id
INNER JOIN "show" ON "show".show_id = show_category.show_id
WHERE "show".show_id = 1

对于纯SQL。在MySQL中你可以使用反引号,除了双qoutes。在MSSQL中它是括号。

避免为表格使用实体保留字。仅供参考:https://www.drupal.org/node/141051