SQL
Statements |
SELECT
- tells ADO what fields to retrieve from which table. For example: SELECT * FROM TableName WHERE - limits what data is selected. An asterix means all elements (columns) in the database. SELECT * FROM TableName WHERE FieldName = 'Value' ORDER BY -sorts what is
returned. INSERT INTO - adds a new
record to the table. DELETE FROM - deletes
records from the table. UPDATE - changes the values
of particular fields of the table LIKE - used to search
through records Wild Card Characters! The % (percent sign) indicates there can be characters before or after the value. |