Learn SQL articles

HAVING: Using the HAVING Clause in SQL: Filtering Aggregated Data

For an instructor lead, in-depth look at learning SQL click below. Learn SQL >> Welcome back to our ongoing series on SQL programming. In this edition, we’re going to cover HAVING, a clause in SQL that allows you to filter aggregated data. Let’s start by understanding why we need to use HAVING clause in SQL. […]

HAVING: Using the HAVING Clause in SQL: Filtering Aggregated Data Read More »

How can I perform calculations on columns in SQL queries?

For an instructor lead, in-depth look at learning SQL click below. Learn SQL >> Structured Query Language or SQL is a powerful language used to manipulate and retrieve data in databases. One of the more advanced but incredibly useful capabilities of SQL is the ability to perform mathematical calculations directly on your database columns using

How can I perform calculations on columns in SQL queries? Read More »

How do I convert values from one data type to another in SQL?

For an instructor lead, in-depth look at learning SQL click below. Learn SQL >> In the world of SQL, data types are fundamental. Different columns in SQL tables can store varying data types including integers, strings, or date/time values. The ability to convert values from one data type to another is essential in analyzing data

How do I convert values from one data type to another in SQL? Read More »

How can I perform CRUD operations on JSON data in SQL?

For an instructor lead, in-depth look at learning SQL click below. Learn SQL >> If you’ve been working with modern web applications, chances are that you’re familiar with JSON (JavaScript Object Notation), a popular data format for transferring data between a server and a client. Although JSON is closely associated with JavaScript, its simplicity, compactness,

How can I perform CRUD operations on JSON data in SQL? Read More »