其中用到了pymssql库
connect为数据库做连接,
指定user password database三个字段
database=指定数据库名字
execute(里面写sql语句)可以赋值给变量
fetchall() 与fetchone()
首先fetchone()函数它的返回值是单个的元组,也就是一行记录,如果没有结果,那就会返回null
其次是fetchall()函数,它的返回值是多个元组,即返回多个行记录,如果没有结果,返回的是()
import pymssql conn=pymssql.connect(host='127.0.0.1',user='sa',password='123456',database='p20210316web') cursor=conn.cursor() cursor.execute('select * from MyTables where myString1=\'add\'') mylist=cursor.fetchall() for item in mylist: print(item)