What is the significance of "ORDER BY emp_id ASC" in the following MySQL command?
SELECT emp_id, fname, lnameFROM personORDER BY emp_id ASC;
SELECT emp_id, fname, lnameFROM personORDER BY emp_id ASC;What is the significance of "ORDER BY emp_id ASC" in the following MySQL command?
SELECT emp_id, fname, lnameFROM personORDER BY emp_id ASC; Correct Answer Data of emp_id will be sorted in ascending order
মোঃ আরিফুল ইসলাম
Feb 20, 2025