我想从我的数据库中的两个表中获取数据。这是我的表格的样子:
我想从表2中选择引用和作者以及表1中的相应专业,两个表中都有相同的作者。
如何构建执行此操作的查询?
答案 0 :(得分:4)
假设您的author
列包含作者的唯一标识符,请尝试:
SELECT t2.quote, t2.author, t1.profession
FROM table2 t2
LEFT JOIN table1 t1 ON t2.author = t1.author
答案 1 :(得分:0)
select T2.quote, T2.author, T1.profession
from table1 T1, tabel2 T2
where T1.id = T2.id
答案 2 :(得分:0)
SELECT table2.quote,table2.author,table1.profession FROM table2,table1 WHERE table2.author = table1.author
您可以在末尾添加LIMIT 1以获得单个结果。