DataBase
137 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
An inline view replaces a table in the from clause of your query. In this query, "select * from bricks" is an inline view
#Oracle
#Inline_views
DataBase
Subqueries: Databases for Developers Prerequisite SQL #Oracle
You use inline views to calculate an intermediate result set. For example, you can count the number of bricks you have of each colour using this particular code.
#Oracle
#Inline_views_2
You can then join the result of this to the colours table. This allows you to find out which colours you have fewer bricks of than the minimum needed defined in colours.
#Oracle
#Inline_views_3