MariaDB INSERT command

The  structure  of INSERT command is INSERT INTO <theTableNameToInsert> (<column1>, <column2>) VALUES (<value1ForColumn1>, <value1ForColumn2>), (<value2ForColumn1>, <value2ForColumn2>); Basically we give it the table name, the order of the columns for every row (inside the first parenthesis, and then the values of the rows, every row in its own parenthesis. The number of columns depend in the … Continue reading MariaDB INSERT command