我有这个查询:
SELECT titulo, info FROM htmlcss, php ORDER BY date
我在字段列表中得到 Column 'titulo' is ambiguous 我该如何解决这个问题?
包括表名。如果你想要来自 htmlcss 的标题:
SELECT htmlcss.titulo, info FROM htmlcss, php ORDER BY date
如果需要,您可以同时选择两者:
SELECT htmlcss.titulo, php.titulo, info FROM htmlcss, php ORDER BY date
SELECT a.titulo, b.info FROM htmlcss a
inner join php b on a.titulo=b.titulo ORDER BY date