Understanding the Syntax used to write SQL Statements May 17th, 2012
SQL statements are used to communicate with the database. One of the statements that you will use is the select statement. It tells the database to pull information that fits the requested criteria. The format of a sql select statement includes the word select, column names, and the table name.
It is really easy to understand the select statement. Type in the columns that you want in the result set. Also type in any criteria to limit the result set. If you Read the rest of this entry »