MySQL method of operating a collection of records, for later viewing

increase

INSERT  INTO table name (field 1, field 2) values ( 1 , 1 );
 INSERT  INTO table name (field 1, field 2) values ( 1 , 1 ), ( 2 , 2 ); # plurality of records 

INSERT  INTO table name values ( . 1 , . 1 ); # field name is not provided, for the increment of the field can not be processed, the number of displayed fields do not match
 INSERT  INTO table values ( . 1 , . 1 ), ( 2 , 2 ); # plurality of records

delete

Aspen Tiffen

Guess you like

Origin www.cnblogs.com/ant-xu/p/11329276.html