MySQL

How to Use MySQL String Functions

August 12, 2021

MySQL string functions allow you to manipulate character string data using the SELECT statement. Learn to use MySQL string functions with this comprehensive tutorial.

Read more

How to Repair MySQL Database

August 5, 2021

A corrupt database can happen at any moment. Try some of these methods to repair your MySQL database quickly.

Read more

RDD vs. DataFrame vs. Dataset

July 21, 2021

Spark contains three major data structures and APIs for working with big data: RDDs, DataFrames and Datasets. Learn about the difference between them as well as when it's best to apply each.

Read more

How To Optimize MySQL Tables

June 24, 2021

MySQL tables fragment over time as delete and update queries are performed. With a large database, the fragmentation slows down queries significantly. Learn about when to use optimization and follow our tips on how to perform table defragmentation.

Read more

How to Install MySQL on Ubuntu 20.04

June 3, 2021

Learn how to install the MySQL server on Ubuntu 20.04 in this simple tutorial. See also how to secure your server after installation and log in to start working.

Read more

What Is Database Denormalization?


You've normalized a database, but now it's too complicated to analyze data. Database denormalization is a commonly used process in data analytics to simplify reports. Learn about the various methods to denormalize a database and when to apply it.

Read more

What is Database Normalization?

May 26, 2021

Database normalization is a key concept in database design. Learn how to organize the data and divide it into optimal tables for maximized efficiency.

Read more

MySQL Events and Event Scheduler Guide

April 27, 2021

MySQL events run on a schedule defined by the user. They automate database maintenance and execute tasks periodically. Learn how to use them in this simple tutorial.

Read more

How To Use MySQL JOINS {With Examples}

April 20, 2021

This tutorial explains what MySQL JOINS are and how to use them to combine information located in multiple tables, producing a unified result.

Read more

How To Use MySQL Triggers

April 12, 2021

MySQL triggers provide control over data validation when inserting, updating or deleting data from a database. Learn how to use triggers through an example database and when to use each type of trigger.

Read more