จะถามว่าเอาคำสั่ง sql select มารวมกันต้องทำอย่างไงคับ
เช่น 1. select * from student where prefix_th like '%นาย';
2. select count(*) from student;
3.select distinct province from student;
จะเอามารวมกันทั้ง 3 ข้อเลย ต้องเชื่อมต่อยังไงคับ
select student_id,prefix_th,name_th,surname_th,curprovince,count(*) from student where prefix_th like '%นาง' group by curprovince order by curprovince asc;