1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
Inserting Data
==============
In Dizzle you can make use of INSERT in order to insert data into a table.
A type query:
.. code-block:: mysql
INSERT INTO A VALUES ("1");
.. todo::
multi row inserts, performance thereof.
|