Is it possible to insert several rows into a table with a single INSERT statement?
Correct Answer: Yes
Explanation:
Note: This Question is unanswered, help us to find answer for this one
MySQL Skill Assessment
Your Skill Level: Poor
Retake Quizzes to improve it
More MySQL MCQ Questions
Which are not String column types?
If you insert (00) as the value of the year in a date column, what will be stored in the database?
Which is not a SQL operator?
You are maintaining data for a Products table, and want to see the products which have a current stock of at least 50 more than the minimum stock limit. The structure of the Products table is: ProductID ProductName CurrentStock MinimumStock Two possible queries are: (a)select * from products where currentStock > MinimumStock + 50 (b)select * from products where currentStock - 50 > MinimumStock Choose the appropriate option with regard to the above queries.
What is NDB?
Which functions were introduced in MySQL 5.6.3?
Which are the properties of MySQL Cursors?
Which escape sequence represents the backslash ('\') character?
Default value of locale for the FORMAT(X,D[locale])D function?
Output? if you try to perform an arithmetic operation on a column containing NULL values?