How do you return fifty events starting from 40th? Assume table name is events and you need to select only the column event_title.
Correct Answer: SELECT event_title FROM events LIMIT 39, 50;
Explanation:
Note: This Question is unanswered, help us to find answer for this one
More MySQL MCQ Questions