insert into student (name, age) value("", 15);
insert into student (name, age) value(null, 15);
python 向数据库插入数据的时候, 怎么把 空值"", 替换为null,
假如不替换的话在数据中,在数据库中则是这样的, ""会占用空间统计也会在内

怎么把DataFrame中的 np.nan, None, 用insert语句插入后显示换成null 这要怎么做呢,?,
百思不得其解
