InterviewSolution
Saved Bookmarks
| 1. |
A multiple-table delete cannot apply any join.(a) True(b) FalseThis question was addressed to me during an interview.This key question is from Enabling or Disabling LOCAL Capability for LOAD DATA in section General MySQL Administration of MySQL |
|
Answer» RIGHT OPTION is (b) False For explanation: In MySQL, a multiple table ‘DELETE’ operation can be performed on the tables combined USING any kind of ‘JOIN’ operation. The syntax also ALLOWS for deleting rows from multiple tables at once. |
|