Answers for "what is the use of subquery in sql"

SQL
1

subquery in sql

SELECT column_name
 FROM table_name1
WHERE VALUE IN 
(SELECT column_name
FROM table_name2 
WHERE condition)
Posted by: Guest on July-19-2021

Code answers related to "what is the use of subquery in sql"

Code answers related to "SQL"

Browse Popular Code Answers by Language