SQL

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

SQL wildcards

Jun 8,92

With SQL wildcards, you can create search patterns that can be compared against your data. The wildcards themselves are actually …

Read More

SQL LIKE operator

Jun 6,92

The SQL LIKE operator gives you the ability to search through a database using wildcards. The syntax is: SELECT column_name1 …

Read More

SQL SELECT LIMIT statement

Jun 6,92

The SQL SELECT LIMIT statement can be used to return just the first row or a set number of rows of …

Read More
Geek University 2022