SQL

How To Work with Dates and Times in SQL — step-by-step DevOps tutorial on Progressive Robot

How To Work with Dates and Times in SQL

In this tutorial, you will learn how to use dates and times in SQL. You’ll begin by performing arithmetic and using various functions with dates and times using only the SELECT statement. Then you’ll practice by running queries on sample data, and you’ll learn how to implement the CAST function to make the output more digestible to read.

Read more
What is the Relational Model? — step-by-step DevOps tutorial on Progressive Robot

What is the Relational Model?

The relational model is an abstract model used to organize data within a database. In order to control access to a database, write data, run queries, or perform any other tasks related to database management, a database management system must have some kind of underlying model that defines how…

Read more
Setting up a Multi-Region Deployment of HarperDB on the cloud provider — step-by-step DevOps tutorial on Progressive Robot

Setting up a Multi-Region Deployment of HarperDB on the cloud provider

URL: https://www.progressiverobot.com/setting-up-a-multi-region-deployment-of-harperdb-on-cloud-provider-6e27b178-a4aa-4986-b475-d7d9423332d5/ HarperDB, a globally distributed data and application platform, is now available on the the cloud provider Marketplace, giving the cloud provider users a fast way to bootstrap HarperDB. HarperDB is unique because it combines a high-performance database, user-built custom applications, and real-time data streaming into a single platform. The technology was built with […]

Read more
How To Create and Manage Tables in SQL — step-by-step DevOps tutorial on Progressive Robot

How To Create and Manage Tables in SQL

Tables are the primary organizational structure in SQL databases. They consist of any number of columns, which reflect individual attributes of each row, or record, in the table. Being such a fundamental aspect of data organization, creating and managing tables are common tasks for anyone who builds or maintains databases. This guide outlines how to create tables in SQL, as well as how to modify and delete existing tables.

Read more
SQL Between, MySQL Between Dates, Not Between — step-by-step Databases tutorial on Progressive Robot

SQL Between, MySQL Between Dates, Not Between

URL: https://www.progressiverobot.com/sql-between-mysql-between-dates-not/ The SQL BETWEEN operator is used along with [WHERE](/community/tutorials/sql-where-clause) clause for providing a range of values. The values can be the numeric value, text value, and date. SQL BETWEEN operator is almost like [SQL IN](/community/tutorials/sql-in-sql-not-in) operators used in a sequential manner. The values are defined as part of the BETWEEN range are inclusive […]

Read more
SQL Commit And Rollback — step-by-step DevOps tutorial on Progressive Robot

SQL Commit And Rollback

URL: https://www.progressiverobot.com/sql-commit-sql-rollback/ The most important aspect of a database is the ability to store data and the ability to manipulate data. COMMIT and ROLLBACK are two such keywords which are used in order store and revert the process of data storage. These keywords are usually used in context with a transaction. Let's try to understand the […]

Read more
SQL Create Table — step-by-step DevOps tutorial on Progressive Robot

SQL Create Table

URL: https://www.progressiverobot.com/sql-create-table/ When we have to store data in relational databases, the first part is to [create the database](/community/tutorials/sql-create-database-postgresql-mysql-sql-server). Next step is to create a table in the database that will store our data. In this tutorial, we will discuss how to create a table using SQL queries in MySQL and PostgreSQL databases. I am […]

Read more
CHAT