How can you fetch common records from two tables? - www.studyandupdates.com

Saturday

How can you fetch common records from two tables?

Q 45. How can you fetch common records from two tables?


Ans : The below statement could be used to get data from multiple tables, so, we need to use join to get data from multiple tables.

Syntax :


SELECT tablenmae1.colunmname, tablename2.columnnmae
FROM tablenmae1
JOIN tablename2
ON tablenmae1.colunmnam = tablename2.columnnmae
ORDER BY columnname;









No comments:

Post a Comment

Popular Posts