mysql> select name from employee where name not like '%次%'; +----------+ | name | +----------+ | 山田太郎 | | 佐藤健司 | | 鈴木花子 | | 田中三郎 | | 高橋良子 | | 鈴木良枝 | +----------+ 6 rows in set (0.00 sec) mysql> select name, dep_id from employee order by dep_id desc; +----------+--------+ | name | dep_id | +----------+--------+ | 田中三郎 | D003 | | 高橋良子 | D003 | | 鈴木良枝 | D003 | | 鈴木花子 | D002 | | 佐藤次郎 | D001 | | 佐藤健司 | D001 | | 山田太郎 | NULL | +----------+--------+ 7 rows in set (0.00 sec) mysql> select name, gender, birthday from employee order by gender desc; +----------+--------+------------+ | name | gender | birthday | +----------+--------+------------+ | 山田太郎 | 男 | 1995-01-01 | | 佐藤次郎 | 男 | 1990-05-03 | | 佐藤健司 | 男 | 1980-05-05 | | 田中三郎 | 男 | 1975-11-03 | | 鈴木良枝 | 男 | 1970-05-03 | | 鈴木花子 | 女 | 1990-02-11 | | 高橋良子 | 女 | 1985-11-23 | +----------+--------+------------+ 7 rows in set (0.00 sec) mysql> select * from employee limit 2, 3; +--------+----------+--------+------------+--------+--------+ | emp_id | name | gender | birthday | salary | dep_id | +--------+----------+--------+------------+--------+--------+ | E00007 | 佐藤健司 | 男 | 1980-05-05 | 350000 | D001 | | E00003 | 鈴木花子 | 女 | 1990-02-11 | 250000 | D002 | | E00004 | 田中三郎 | 男 | 1975-11-03 | 400000 | D003 | +--------+----------+--------+------------+--------+--------+ 3 rows in set (0.00 sec)