Retrieving a Single Column in a SQL
by Dinesh[ Edit ] 2012-08-27 17:21:24
Retrieving a Single Column in a SQL
You can use SQL to retrieve a single column of data.
Syntax:
Select fieldname
from tablename;
Explanation:
01. Instead of an asterisk, the name of the field is specified in the Select clause.
02. Field names are not case-sensitive. You can type field names in uppercase or lowercase letters.