There is a filled table. Can I get an INSERT code containing all the values in the table? Those. there is a table
+-----+-----------------+ | id | name | +-----+-----------------+ | 1 | Ivan Ivanov | | 2 | Sergey Petrov | +-----+-----------------+ You need to get a code from it:
INSERT INTO table VALUES(1, Ivan Ivanov) INSERT INTO table VALUES(2, Sergey Petrov) Is it possible?