Sling Academy
Home/MySQL/Page 14

MySQL

MySQL is a popular open-source relational database management system known for its speed, reliability, and ease of use, widely used for web applications and online data storage.

MySQL 8: How to perform case-insensitive string comparison

Updated: Jan 26, 2024
Introduction In the world of database management, attention to detail is key, and sometimes those details come down to the very case of the characters within the data you’re comparing. MySQL is a robust database management system......

MySQL 8: How to search for a string in all tables of a database

Updated: Jan 26, 2024
Introduction Searching for a specific string across all tables of a database can be quite a task, especially if you do not know where exactly to look. MySQL 8, the popular open-source relational database management system, offers......

Understanding UNIQUE constraint in MySQL 8: A Developer’s Guide

Updated: Jan 26, 2024
Introduction The UNIQUE constraint in MySQL plays a critical role in ensuring the integrity of data in a database by preventing duplicate values in one or more columns. For developers, grasping this concept is crucial for designing......

How to delete rows from a table in MySQL 8

Updated: Jan 26, 2024
Introduction Handling data efficiently often involves not only adding and updating records but also knowing how to remove them when they’re no longer needed. In MySQL 8, deleting rows from a table can be done using the DELETE......

How to update rows in a table in MySQL 8

Updated: Jan 26, 2024
Introduction MySQL is a powerful, open-source relational database management system. In MySQL 8, updating rows in a database table is a common operation that allows you to modify your data as your requirements change. In this tutorial,......

Using SHOW and DESCRIBE statements in MySQL 8: A Practical Guide

Updated: Jan 25, 2024
Introduction Understanding the structure of databases and their tables is crucial for developers and database administrators. MySQL 8, which is one of the most popular database management systems, provides useful statements such as......

MySQL 8: How to get the size of a database

Updated: Jan 25, 2024
Introduction Understanding the size of a database is crucial for database management. It allows administrators to monitor growth trends, plan for capacity expansion, and optimize database performance. In MySQL 8, multiple techniques......

MySQL 8: Add column with default value to an existing table

Updated: Jan 25, 2024
Introduction MySQL is a robust, open-source database management system. With the release of MySQL 8, developers can enjoy new features and enhanced performance. A common task in database management is to add a column to an existing......

MySQL 8: How to use aliases for columns and tables in SELECT statement

Updated: Jan 25, 2024
Introduction MySQL is an incredibly powerful and versatile database management system used for storing and retrieving data in a structured format. Any SQL-based interface must be flexible enough to allow users to structure queries......

MySQL 8: How to compare values (greater than, less than, equal to, etc.)

Updated: Jan 25, 2024
Introduction When working with databases, comparing values is a fundamental aspect of retrieving, analyzing, and understanding data. MySQL, as one of the leading relational database management systems, provides several operators for......

Using LIKE and NOT LIKE operators in MySQL 8: A Practical Guide

Updated: Jan 25, 2024
Introduction The LIKE and NOT LIKE operators in MySQL are powerful tools for pattern matching in SQL queries. They are often used in the WHERE clause to search for a specified pattern in a column. This practical guide will demonstrate......

Using AND & OR operators in MySQL 8: A Practical Guide

Updated: Jan 25, 2024
Introduction MySQL is one of the most popular relational database management systems used worldwide. The AND & OR operators are logical constructs within MySQL that form the bedrock of complex querying. This tutorial will provide a......