| mysql> INSERT INTO student_info VALUES(NULL,'AAA',1),(NULL,'BBB',1),(NULL,'CCC',2),(NULL,'DDD',2),(NULL,'ABB',1),(NULL,'ACC',1);Query OK, 6 rows affected (0.02 sec)Records: 6 Duplicates: 0 Warnings: 0mysql> SELECT * FROM student_info;+--------+----------+---------------+| stu_no | stu_name | student_class |+--------+----------+---------------++--------+----------+---------------+mysql> SELECT * FROM student_count;+---------------+---------------+| student_count | student_class |+---------------+---------------++---------------+---------------+ |