fetch multiple tables in one query

前端 未结 3 1348
北海茫月
北海茫月 2021-01-28 10:53

This is thirty post in one houre . so i am sorry !

but i did\'t get what i want !

i will try to explain more ..

i have two tables ..

POSTS <--

3条回答
  •  清歌不尽
    2021-01-28 11:18

    I am assuming you need to get all posts (and by posts you mean articles)

    yes, you can use one query:

    SELECT * FROM articles;
    

    To get all articles

提交回复
热议问题