表4栏
cur.execute("""CREATE TABLE videoinfo (
id INT UNSIGNED PRIMARY KEY AUTO INCREMENT,
date DATETIME NOT NULL,
src_ip CHAR(32),
hash CHAR(150));
""")
我有三栏内的数据。 我想使用<代码>。 LOAD DATA LOCAL INFILEcommand to include data, but the problem is , the table I establishing now has four栏, the first one is the id, so, can mysql auto add data from the second栏 or extrator is need?
感谢!