Nested SELECT is used when some select query is used under a select query like SELECT * FROM (SELECT * FROM TABLE)
Questions tagged [nested-select]
46 questions
-2
votes
2 answers
How can I don't use sub query in checking the missing data
I have to write a query that find missing data, but I want it to write without any subqueries or nested SELECT (it finds the missing data and inserts it from a table to the one that has missing data).
The query is:
INSERT INTO Personal_tbl
…

Sara Moradi
- 33
- 5