Learn SQL Server Greg Larsen in Learn SQL Server Using TOP clause in a SELECT statement There might be a time when you might want to return just a few rows of a result set, instead... 06 February 2023 11 min read
PostgreSQL Grant Fritchey in PostgreSQL PostgreSQL Constraints: Learning PostgreSQL with Grant One of the most important aspects of data management is the ability to ensure that the data in your database... 02 February 2023 23 min read
MySQL Lukas Vileikis in MySQL Optimizing Queries in MySQL: Optimizing Reads Optimizing read operations is one of the most prominent problems concerning any database administrator. No matter what kind of database... 31 January 2023 28 min read
PostgreSQL Ryan Booz in PostgreSQL PostgreSQL Basics: Roles and Privileges Information security, whether in databases, applications, or larger IT systems, is based on the principles of Authentication and Authorization, often... 19 January 2023 19 min read
Learn SQL Server Greg Larsen in Learn SQL Server Manage Data Over Time with SQL Server MERGE Statement Once data is in a table it needs to be maintained. New records will need to be added, and existing... 17 January 2023 13 min read
PostgreSQL Grant Fritchey in PostgreSQL Index Types in PostgreSQL: Learning PostgreSQL with Grant As with any other relational data management system (RDBMS), PostgreSQL uses indexes as a mechanism to improve data access. PostgreSQL... 09 January 2023 15 min read
MySQL Robert Sheldon in MySQL Introducing the MySQL common table expression As with many relational database management systems, MySQL provides a variety of methods for combining data in a data manipulation... 05 January 2023 23 min read
Blogs Louis Davidson in Blogs Dealing with the Bits of a Binary Value in SQL Server In this article, I want to talk about a topic that you may never need. The only time I have... 04 December 2022 5 min read
MySQL Robert Sheldon in MySQL Subqueries in MySQL A subquery is a type of query that is embedded—or nested—into a data manipulation language (DML) statement. The data returned... 02 December 2022 22 min read
T-SQL Programming Edward Pollack in T-SQL Programming Converting Data Across Time Zones: An In-Depth Primer If only the entire world used UTC, wouldn’t life be so much easier? We can dream, can’t we? While some... 21 November 2022 27 min read
MySQL Robert Sheldon in MySQL Introducing the MySQL DELETE statement In the last few articles in this series, you learned about three important data manipulation language (DML) statements: SELECT, INSERT,... 12 November 2022 17 min read
Learn SQL Server Greg Larsen in Learn SQL Server The Basics of Deleting Data from a SQL Server Table Over time data in SQL Server tables needs to be modified. There are two major different aspects of modifying data:... 07 November 2022 12 min read
MySQL Robert Sheldon in MySQL Introducing the MySQL UPDATE statement In the previous two articles in this series, you learned about SELECT and INSERT, two important data manipulation language (DML)... 28 October 2022 21 min read
Oracle Jonathan Lewis in Oracle Oracle optimizer Or Expansion Transformations The previous installment of this series examined aggregate subquery removal and subquery coalescing, describing the latter as similar in some... 26 October 2022 15 min read
Learn SQL Server Greg Larsen in Learn SQL Server The Basics of Updating Data in a SQL Server Table Once data is inserted into a table, data typically needs to be maintained as time goes on. To make changes... 21 October 2022 14 min read
MySQL Lukas Vileikis in MySQL Backing up MySQL Part 1: mysqldump mysqldump is one of the most popular database backup tools in the MySQL world. The tool is prevalent partly because... 14 October 2022 11 min read
MySQL Robert Sheldon in MySQL Introducing the MySQL INSERT statement In the previous article in this series, I introduced you to the SELECT statement, one of several SQL statements that... 07 October 2022 22 min read
Learn SQL Server Greg Larsen in Learn SQL Server The Basics of Inserting Data into a SQL Server Table Before data can be read from of a SQL Server database table, the table needs to contain rows of data.... 04 October 2022 15 min read
Blogs Louis Davidson in Blogs Generating Repeatable Sets Of Test Rows In order to test graph structures, I needed a large set of random data. In some ways, this data will... 30 September 2022 11 min read
MySQL Robert Sheldon in MySQL Introducing the MySQL SELECT statement Use SELECT statements to query a MySQL database. In this article, Robert Sheldon explains how. … 15 June 2022 18 min read