단일 쿼리의 여러 선택 문 php(mysql)로 보고서를 생성하고 있습니다. 예: `select count(id) as tot_user from user_table select count(id) as tot_cat from cat_table select count(id) as tot_course from course_table` 이렇게 12개의 테이블이 있어요. 한 번에 만들 수 있나요?내가 그랬다면?프로세스가 느리다?SELECT ( SELECT COUNT(*) FROM user_table ) AS tot_user, ( SELECT COUNT(*) FROM cat_table ) AS tot_cat, ( SELECT COUNT(*) FROM course_table ) AS tot_course MyISAM ..