sql='select * from `tablename` LIMIT 1000'
cursor.execute(sql)
#获取所有数据
rows=cursor.fetchall()
#获取第一行数据
rows=cursor.fetchone()
print(rows)