|
Revision as of 15:06, 21 April 2012Action Queries
Related Content:
Basic Examples
Delete Queries
SQL DELETE * FROM tablename WHERE criteria SQL DELETE Field1, Field2 FROM tablename WHERE criteria You can delete all the data from a given table by supplying all (*) fields and no criteria. This is usefull for temporary tables: SQL DELETE * FROM tablename Append Queries
SQL INSERT INTO Tablename (Field1, Field2) VALUES (Value1, Value2)
Update Queries
SQL UPDATE Tablename SET Field1=Value1, Field2=Value2 WHERE criteria
Make Table QueriesSQL SELECT Tablename.Field1, Tablename.Field2, Tablename.Field3 INTO Newtable
FROM Tablename; Calling Methods
|
||||||||||||||||||||||||||||||||||||||||||||||||
| Disclaimers |