不是程序员所以需要帮助,我正在使用Wordpress 3.0.2和wp-calendar 我看了PhpMyAdmin下的mysql数据库 wordpress - wp_calendar_categories - 有类别0 -4(5)
我希望将以下格式将此数据放入wordpress中的页面: -
对于类别1,其也在类别4数据输出Title- date -time -location中 对于类别2,它也在类别4数据输出Title- date -time -location中 类别3也属于类别4数据输出Title- date -time -location 使用带有wp-calendar插件的命令将不会在cat4中为我提供cat1的输出 我可以按照以下格式生成每个类别中的所有列表标题 - 日期 - 时间 - 位置
os任何sql掌握那里请帮助可以提供更多信息,如果需要
感谢
答案 0 :(得分:0)
如果我正确理解了您的问题,那么您正在尝试输出多个类别的信息。为此,您需要加入。
SELECT title, date, time, location
FROM wp_calendar_categories c1
JOIN wp_calendar_categories c4
ON c1.title = c4.title
AND c1.date = c4.date
AND c1.time = c4.time
AND c1.location = c4.location
WHERE c1.category = 1
AND c4.category = 4
您可以使用联合
组合结果(如果列相同)SELECT title, date, time, location
....
UNION
SELECT title, date, time, location
我建议在网上搜索SQL教程,以帮助您入门。