Mysql Select Statement With Examples
SQL SELECT statement syntax It is the most frequently used SQL command and has the following general syntax HERE SELECT is the SQL keyword that lets the database know that you want to retrieve data. [DISTINCT | ALL] are optional keywords that can be used to fine tune the results returned from the SQL SELECT statement. If nothing is specified then ALL is assumed as the default. {| [fieldExpression [AS newName]} at least one part must be specified, “” selected all the fields from the specified table name, fieldExpression performs some computations on the specified fields such as adding numbers or putting together two string fields into one....