Help for this page

Select Code to Download


  1. or download this
    INSERT INTO table SET x = 1, y = 2, z = 3;
    
  2. or download this
    INSERT INTO table (x,y,z) VALUES (1,2,3), (4,5,6), (7,8,9);
    
  3. or download this
    INSERT DELAYED INTO table (x,y,z) VALUES (1,2,3);