Fetch data from two tables?

前端 未结 3 1709
一整个雨季
一整个雨季 2021-01-28 10:02

I have two tables Say Table-A and Table-B

Table-A

id | Article Name |date
1  | ABC          | 25/2/2011
2  | xyz          | 26/2/2011

Table-B

id | Comment             


        
3条回答
  •  逝去的感伤
    2021-01-28 11:01

    Something like this should do (untested, not at home):

    SELECT Table-A.id, Table-A.article-name, Table-A.date, (SELECT COUNT(id) FROM Table-B WHERE Article-id=Table-A.id) AS NumberOfComments FROM Table-A;
    

提交回复
热议问题