how to use the SQL Server INNER JOIN clause to query data from multiple tables.
Mercy Margret Answered question
INNER JOIN syntax for SQL:
These two tables are referred to as joined tables.
The query locates the appropriate row in table_2 that meets the joining requirement for each entry in table_1.
The question provides a row with information from both tables if the relevant row was located.
Vishalini.R Answered question
