All posts by Tuna Peyo

SQL CREATE TABLE statement

Jun 26,92

The SQL CREATE TABLE statement is used to create tables. To create a table using this statement, you must specify the …

Read More

SQL CREATE DATABASE statement

Jun 26,92

Usually DBMSs include an administration tool that can be used to create, manage database and tables. Database can also be created with the SQL …

Read More

SQL UNION operator

Jun 25,92

The SQL UNION operator is used to combine multiple SELECT statements into one result set. The syntax: SELECT column_name FROM …

Read More

SQL aliases

Jun 24,92

An alias is an alternate name for a field or value. Aliases are assigned with the AS keyword and can …

Read More

SQL BETWEEN operator

Jun 24,92

The SQL BETWEEN operator is used to check for a range of values. The syntax: SELECT * FROM table_name WHERE column_name …

Read More

SQL IN operator

Jun 8,92

The SQL IN operator allows you to specify multiple values in a WHERE clause. The syntax is: SELECT * FROM table_name WHERE …

Read More
Geek University 2022