How to use subqueries with the exists operator in oracle?
Answer / Gaurav Mathur
"To use a subquery with the EXISTS operator in Oracle, you can write it like this:
```
SELECT * FROM table_1
WHERE EXISTS (
SELECT * FROM table_2
WHERE table_1.id = table_2.id
);
| Is This Answer Correct ? | 0 Yes | 0 No |
Please explan Why static query is more faster than dynamic query ?
What is Index Cluster ?
How to change program global area (pga) in oracle?
Which is better Oracle or MS SQL? Why?
How to define and use table alias names in oracle?
What is the difference between truncate & delete command?
How to check the oracle tns settings?
What is a database schema in oracle?
how to convert .db (extention) database file into .dmp (extention ) for oracle database ?
How do I recompile a procedure in oracle?
What are the differences between date and timestamp in oracle?
State the various uses of dbcc command?