I\'m trying to display all the employee id\'s
i need the result like
emp_id 10,11,12,13,14,15..,...
when tried
Try this:
SELECT GROUP_CONCAT(emp_id) as emp_id FROM employees;