//定义一条sql语句String sql="create table persons(_id integer primary key autoincrement,name text)";//执行sql语句db.execSQL(sql);那条sql语句是用来创建一张表的。