Unveiling SQL
Learn about the declarative nature of SQL.
We'll cover the following...
Focus on “What” not “How”
Declarative programming is a programming paradigm that focuses on describing what should be done, rather than how it should be done. In declarative programming, we specify the desired outcome or result, and the underlying system automatically figures out the steps and processes needed to achieve that result. This is in contrast to imperative programming, seen in languages like ...