Category: SQL Commands

0

SQL Aliases

Sometimes you want to change the column names to make them more readable, SQL aliases are used to change the names of tables or columns headings, it is used as follows: Syntax SELECT column_name AS...

0

SELECT Statement

The SELECT statement is used to retrieve the useful data from one or more tables in a database. The basic use of SELECT statement is as follows: Syntax: SELECT * FROM TableName          –To select all columns or...