SQL query multiple tables

后端 未结 6 1202
予麋鹿
予麋鹿 2021-01-24 22:41

I have 2 tables and I need to select the relative information, need some help with the query.

Table 2 has ID, MaskID columns.

6条回答
  •  粉色の甜心
    2021-01-24 23:32

    SELECT t2.ID,t3.MaskName,t3.Total
    FROM Table2  t2 INNER JOIN  Table3 t3
    ON t2.MaskID=t3.MaskID;
    

提交回复
热议问题