-
Book Overview & Buying
-
Table Of Contents
Data Engineering with dbt
By :
SQL was created in the 70s and by the end of the 80s, had become the de facto standard to interact with Relational Databases (RDBs), and it now powers most of the data management industry in the world.
Given its huge footprint and powerful abstractions, SQL has become a standard that anyone working with database systems eventually becomes familiar with. The expressive power of SQL is well understood and its knowledge is so ubiquitous that it has been taken into use beyond RDBs, with Database Management Systems (DBMSs) of all sorts providing a SQL interface even on top of many non-RDB systems.
Some of the great advantages of SQL are as follows:
Every database has its SQL quirks, but the logic is the same and most SQL code will work on multiple databases with little or no change.
Learn it now and use it forever, and with (almost) every database.
Most people can probably get a sense of what the following SQL does:
SELECT ORDER_ID, CUSTOMER_CODE, TOTAL_AMOUNT FROM ORDERS WHERE YEAR(ORDER_DATE) = 2021;