1.循环读取出 title 数据(其实是选取所有title数据)select title from 数据表名 ;2.读取出ID=7的那一条数据select * from 数据表名 where ID=7;3.读取style =2 的 title数据select title from 数据表名 where style=2;