I have 2 tables and I need to select the relative information, need some help with the query.
Table 2 has ID, MaskID columns.
ID
MaskID
SELECT t2.ID,t3.MaskName,t3.Total FROM Table2 t2 INNER JOIN Table3 t3 ON t2.MaskID=t3.MaskID;