MariaDB Question:
Download Job Interview Questions and Answers PDF
Tell us how to insert records in a table in MariaDB database?
Answer:
INSERT INTO statement is used to insert records in a table in MariaDB database.
Syntax:
INSERT INTO tablename (field,field2,...) VALUES (value, value2,...);
Syntax:
INSERT INTO tablename (field,field2,...) VALUES (value, value2,...);
Download MariaDB Interview Questions And Answers
PDF
Previous Question | Next Question |
Tell us why Is Order By In A From Subquery Ignored? | Do you know what is the use of WHERE clause? |