SQL

How To Use Functions in SQL — step-by-step DevOps tutorial on Progressive Robot

How To Use Functions in SQL

When working with relational databases and Structured Query Language (SQL), you can store, manage, and retrieve data from the relational database management system. SQL can also perform calculations and manipulate data through the use of functions. In this tutorial, you’ll use different SQL functions to perform mathematical calculations, manipulate strings and dates, and calculate summaries using aggregate functions.

Read more
How to INSERT Multiple Records in SQL — step-by-step DevOps tutorial on Progressive Robot

How to INSERT Multiple Records in SQL

URL: https://www.progressiverobot.com/sql-insert-multiple-rows/ Hey, folks! In this article we will be focusing on ways to Insert Multiple rows in SQL. Need of SQL Insert INTO Multiple rows query [SQL INSERT query](/community/tutorials/sql-insert-query) inserts data into the columns of a particular table. The normal SQL INSERT query inputs the data values in a single row. In case when […]

Read more
How to implement the SQL INSTR() function? — step-by-step DevOps tutorial on Progressive Robot

How to implement the SQL INSTR() function?

URL: https://www.progressiverobot.com/sql-instr-function/ Hey, folks! In this article, we will be understanding SQL INSTR() function in detail. Working of SQL INSTR() SQL, being a query language, contains various in-built functions to deal with the String data values of the database. One such interesting function is SQL INSTR() function. SQL INSTR() function detects the first occurrence of […]

Read more
How To Use Views in SQL — step-by-step DevOps tutorial on Progressive Robot

How To Use Views in SQL

In Structured Query Language (SQL), a “view” is a virtual table whose contents are the result of a specific query to one or more tables. This guide provides an overview of what SQL views are and why they can be useful. It also highlights how you can create, query, modify, and destroy views using standard SQL syntax.

Read more
How To Use CASE Expressions in SQL — step-by-step DevOps tutorial on Progressive Robot

How To Use CASE Expressions in SQL

CASE expressions are a feature in Structured Query Language (SQL) that allow you to apply similar logic to database queries and set conditions on how you want to return or display the values in your result set. In this tutorial, you’ll learn how to use the CASE expression to set conditions on your data using WHEN, THEN, ELSE, and END keywords.

Read more
How To Use Joins in SQL — step-by-step DevOps tutorial on Progressive Robot

How To Use Joins in SQL

Many database designs separate information into different tables based on how certain data points relate to one another. Even in cases like this, it’s likely that there will be times when someone will want to retrieve information from more than one table at a time. A common way of accessing data from multiple tables in a single SQL operation is to combine the tables with a JOIN clause. This guide outlines how to retrieve data from multiple tables by joining them together.

Read more
How To Use Wildcards in SQL — step-by-step DevOps tutorial on Progressive Robot

How To Use Wildcards in SQL

Like many computer languages, SQL allows the use of various wildcard characters. Wildcards are special placeholder characters that can represent one or more other characters or values. This is a convenient feature in SQL, as it allows you to search your database for your data without knowing the exact values held within it. This tutorial will go over how to query data using SQL’s designated wildcards.

Read more
How To Use the BETWEEN and IN Operators in SQL — step-by-step DevOps tutorial on Progressive Robot

How To Use the BETWEEN and IN Operators in SQL

In certain Structured Query Language (SQL) statements, WHERE clauses can be used to limit what rows the given operation will affect. SQL allows users to retrieve granular result sets by providing a variety of different types of predicates, each of which use a specific operator to evaluate rows. This guide will outline two types of predicates: range predicates which use the BETWEEN operator, and set membership predicates which use the IN operator.

Read more
How To Use WHERE Clauses in SQL — step-by-step DevOps tutorial on Progressive Robot

How To Use WHERE Clauses in SQL

In Structured Query Language (SQL) statements, WHERE clauses limit what rows the given operation will affect. This guide will go over the general syntax used in WHERE clauses. It will also outline how to combine multiple search condition predicates in a single WHERE clause to filter data with more granularity, as well as how to use the NOT operator to exclude, rather than include, rows that meet a given search condition.

Read more
CHAT