|
A) (to erase all table data) DELETE FROM <table_name> ;
B) (to erase one row) DELETE FROM <table_name> WHERE <attribute_name> <condition> <value> ;
C) (to insert one row) INSERT INTO <table_name> VALUES ( '<attribute1_value>', .... , '<attributeN_value>' );
D) (to insert one row with some specified attributes) INSERT INTO <table_name> ( <attributeAname>, ... , <attributeZname> ) VALUES ( '<attributeA_value>', .... , '<attributeZ_value>' );
E) (to change one row attribute ) UPDATE <table_name> SET <attribute_name> = <value> WHERE <attribute_name> <condition> <value> ;
F) (to search one row) SELECT < * | <attribute_list > FROM <table_name> WHERE <search_condition> [ ORDER BY <attribute> ]; |
|