Learn SQL articles

How can I convert a string to uppercase or lowercase in SQL?

For an instructor lead, in-depth look at learning SQL click below. Learn SQL >> In SQL programming, converting strings to either uppercase or lowercase can be achieved using in-built functions designed for this purpose. This conversion can be handy when performing data cleaning, manipulation and comparison tasks. In this blog post, we’re going to explore

How can I convert a string to uppercase or lowercase in SQL? Read More »

How can I extract data from multiple tables using SQL?

For an instructor lead, in-depth look at learning SQL click below. Learn SQL >> w can I extract data from multiple tables using SQL? Extracting information from multiple tables in SQL is a common operation and often involves the use of joins. Join statements enable retrieving information from several tables that have a column in

How can I extract data from multiple tables using SQL? Read More »

How can I find the length of a string in SQL?

For an instructor lead, in-depth look at learning SQL click below. Learn SQL >> When working with data in SQL (Structured Query Language), it’s common to encounter tasks that involve understanding, manipulating, and analyzing text strings. One such task is finding the length of a string. This can be extremely useful in numerous scenarios, from

How can I find the length of a string in SQL? Read More »

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 calculate the difference between two dates in SQL?

For an instructor lead, in-depth look at learning SQL click below. Learn SQL >> Managing dates in any programming language can be a complex task and SQL is no exception. One frequent requirement in data analytics is to calculate the difference between two dates. Fortunately, SQL provides robust functions to work with dates. In this

How can I calculate the difference between two dates in SQL? Read More »