Create Table Insert Into Select Update Alter Table Delete From
Create Table Insert Into Select Update Alter Table Delete From
INSERT INTO
SELECT
UPDATE
ALTER TABLE
DELETE FROM
and OR are special operators that you can use with WHERE to
filter the query on two or more conditions.
lets you specify the maximum number of rows that the query
will return. This is especially important in large tables that have thousands
or even millions of rows.
SELECT
WHERE
LIKE
AND
ORDER BY
LIMIT
COUNT
GROUP BY
SUM()
MAX()
MIN()
AVG()
ROUND()
Primary Key is a column that serves a unique identifier for row in the
table. Values in this column must be unique and cannot be NULL.
will return every row in the left table, and if the join
condition is not met, NULL values are used to fill in the columns from
theright table.
INNER JOIN
AS