今天用python向mysql写数据时,其中有些字段是decimal(16,4)和int类型的,写数据前也做了数据类型转换
store_code= df['store_code'].astype(str) price = df['price'].astype(float)
但是执行sql插入时一直报TypeError: must be real number,not str
sql = """insert into detail_table(store_code,price) values(%s,%f) """
查询后得知Python向MySQL中写入数据时无论输入的数据类型如何,语句中的占位符均使用%s,所以尽管price是float类型,但是占位符不能使用%f,还是要使用%s
也就是无论输入的数据是否为字符串,占位符都是%s,不存在%f,%d这种概念!!!!