Penguin

Differences between version 2 and predecessor to the previous major change of SQL.

Other diffs: Previous Revision, Previous Author, or view the Annotated Edit History

Newer page: version 2 Last edited on Thursday, August 21, 2003 11:23:51 am by StuartYeates Revert
Older page: version 1 Last edited on Friday, July 26, 2002 11:13:42 am by PerryLorier Revert
@@ -1,7 +1,9 @@
 [Acronym] for __S__tructured __Q__uery __L__anguage (or, by consensus here, __S__tupid __Q__uery __L__anguage). 
  
-someone should explain the general syntax of [SQL] here. 
+[SQL] is a set-centeric ProgrammingLanguage in which statements are excuted over a [Schema] of relations (tables) and return a set of results.  
+  
+Someone should explain the general syntax of [SQL] here. 
  SELECT ''cols'' FROM ''tables'' WHERE ''condition'' 
  UPDATE ''table'' SET ''column''=''value'' WHERE ''condition'' 
  DELETE FROM ''table'' WHERE ''condition'' 
  INSERT INTO ''table'' (''columns'') VALUES (''values'')