-> values(3001,18.69,'03-OCT-1990',2008,1007), -> (3003,767.19,'03-OCT-1990',2001,1001), -> (3002,1900.10,'03-OCT-1990',2007,1004), -> (3005,5160.45,'03-OCT-1990',2003,1002), -> (3006,1098.16,'03- OCT -1990',2008,1007), -> 3009 1713.23 04- OCT -1990 2002 1003 -> 3007 75.75 04- OCT -1990 2004 1002 -> 3008 4723.00 05- OCT -1990 2006 1001 -> 3010 1309.95 06- OCT -1990 2004 1002 -> ^X -> ; ERROR 1064 (42000): You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near '3009 1713.23 04- OCT -1990 2002 1003 3007 75.75 04- OCT -1990 2004 1002 3008 4' at line 7 mysql> select * from orders -> ; Empty set (0.00 sec)
mysql> insert into orders
-> -> values(3001,18.69,'03-OCT-1990',2008,1007), -> -> (3003,767.19,'03-OCT-1990',2001,1001), -> -> (3002,1900.10,'03-OCT-1990',2007,1004), -> -> (3005,5160.45,'03-OCT-1990',2003,1002), -> ;(3006,1098.16,'03- OCT -1990',2008,1007), ERROR 1064 (42000): You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near '-> values(3001,18.69,'03-OCT-1990',2008,1007), -> (3003,767.19,'03-OCT-1990'' at line 2 -> ; ERROR 1064 (42000): You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near '3006,1098.16,'03- OCT -1990',2008,1007),' at line 1 mysql> select * from orders; Empty set (0.00 sec)