我正在從SQL數據庫導入數據並將其與Angular.js綁定。我不太瞭解SQL,並且遇到了一些問題。SQL內部連接兩張表
我想要做的是讓相關圖像與帖子一起出現。這是我迄今爲止所提出的。
select posts.id, posts.name, posts.description, posts.date, posts.email
from posts Inner Join images on images.id, images.post_id, images.image
order by posts.date desc
架構是
職位(表):
id(pk), name, description, date, email
圖片(表):
id, post_id(fk), image
那麼,你的問題是什麼? – Mureinik 2014-09-21 18:48:35
你有什麼問題? – GolezTrol 2014-09-21 18:48:49