JasonV
       
JasonV
Home
 
Career
Leadership
Projects
 
Resources
Photos
Programming
Links
Quick Tips 
 
Contact Me
 
Basic SQL Statements
Objective SQL Statement
List one field. SELECT field1 FROM table1
List two fields. SELECT field1, field2 FROM table1
Alphabetize (A-Z) SELECT field1
FROM table1
ORDER BY field1;
Alphabetize (Z-A) SELECT field1
FROM table1
ORDER BY field1 DESC;
          (c) Jason Vroustouris 1999-2010 - All Rights Reserved. - For questions or comments contact me.