MySQL Basics
This section describes the basic operations of data manipulation in MySQL, including inserting data, deleting data, modifying data and querying data.
-
MySQL SELECT
This article describes basic syntax of theSELECT
statement, and how to use theSELECT
statement to query data from the database. -
MySQL WHERE
This article describes how to use theWHERE
clause to filter data in a MySQL database. -
MySQL AND
This article describes how to use theAND
operator in theWHERE
clause to combine multiple query conditions. -
MySQL OR
This article describes how to use theOR
operator in theWHERE
clause to combine multiple query conditions. -
MySQL IN
In this article, we describes how to use MySQLIN
operator to test whether a value is included in a list. -
MySQL BETWEEN
In this article, you will learn MySQLBETWEEN
operator and its use cases. -
MySQL LIKE
In this article, you will learn MySQLLIKE
operator and its use cases. -
MySQL IS NULL
This article describes the syntax and usage of MySQLIS NULL
operator. -
MySQL EXISTS
In this article, we will explore how to use MySQLEXISTS
operator. -
MySQL ORDER BY
In this article, we describe how to use MySQLORDER BY
clause to sort the result set of the SELECT statement. -
MySQL LIMIT
This article describes how to limit the number of rows of result set using the MySQL LIMIT clause. -
MySQL DISTINCT
This article describes how to remove duplicate rows in the result using MySQLDISTINCT
keyword. -
MySQL JOIN
In this article, we will introduce MySQL inner joins, left joins, right joins, and cross joins. -
MySQL GROUP BY
This article will describes MySQLGROUP BY
clause which can group some rows by specified columns or expression. -
MySQL UNION
In this article, we will discuss the syntax and useage of MySQLUNION
operator. -
MySQL ALIAS
In this article, we discussed column aliases, table aliases and derived table aliases in MySQL, and the use of aliases to simplify SQL and improve the readability of SQL. -
MySQL subqueries
This article describes what MySQL subqueries are and how to write SQL statements using subqueries. -
MySQL INSERT
In this article, we will use MySQLINSERT
statement to insert one or more rows into a table. -
MySQL DELETE
This article describes how to remove rows from a table by MySQLDELETE
statement. -
MySQL UPDATE
This article describes how to use MySQLUPDATE
statement to update one or more rows. -
MySQL REPLACE
In this article, you will learn about MySQLREPLACE
statement and how to use it to insert rows into a table.