6
単一クエリ内の複数の選択ステートメント
私は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のテーブルを持っています。 単一のクエリで作成できますか?私がやったら?プロセスが遅くなりますか?
101
mysql