DataBase
138 subscribers
1.82K photos
3 videos
3 files
57 links
Contact: java.response.email@gmail.com

Link: @database_posts

This channel covers the concepts of database using Oracle, PostgreSQL, MySQL, MongoDB and IBM db2. Enjoy!
Download Telegram
DataBase
Subqueries: Databases for Developers Prerequisite SQL #Oracle
Nested subqueries go in your where clause. The query filters rows in the parent tables. For example, to find all the rows in colours where you have a matching brick, you could write the following.
#Oracle
#Nested_Subqueries
DataBase
Subqueries: Databases for Developers Prerequisite SQL #Oracle
You can also use exists in a nested subquery. The following is the same as the previous query
#Oracle
#Nested_Subqueries_2