Correct Answer: SELECT INTO DUMPFILE
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 optimization tips holds true?
Which methods can speed up the INSERT statements?
Prior to MySOL 5.6.1. what did the isSimpie(g) function always return?
Correct order in which the clauses of the SELECT statement are used? 1. SELECT 2. LIMIT 3. WHERE 4. ORDER BY 5. HAVING 6. FROM
Result of the following two queries? 1. SELECT 2+3 2. SELECT 2+(3'3)-5
Which operator will be evaluated first in the following statement: select (age + 3 * 4 / 2 - 8) from emp
Consider the following tables: Books ------ BookId BookName AuthorId SubjectId PopularityRating(the popularity of the book on a scale of 1 to 10) Language(such as French, English, German etc) Subjects --------- SubjectId Subject(such as History, Geography, Mathematics etc) Authors -------- AuthorId AuthorName Country Which is the query to determine the number of Authors who have written books on more than 2 subjects?
View the following Create statement: 1. Create table Pers 2. (EmpNo Int not null, 3. EName Char not null, 4. Join_dt Date not null, 5. Pay Int) Which line contains an error?
Which is used to change the structure of a table once it has been created?
Which is not a MySQL Data type?