loaddata_autocom_innodb.result
来自「视频监控网络部分的协议ddns,的模块的实现代码,请大家大胆指正.」· RESULT 代码 · 共 22 行
RESULT
22 行
SET SESSION STORAGE_ENGINE = InnoDB;drop table if exists t1;create table t1 (a text, b text);start transaction;load data infile '../std_data_ln/loaddata2.dat' into table t1 fields terminated by ',' enclosed by '''';Warnings:Warning 1261 Row 3 doesn't contain data for all columnscommit;select count(*) from t1;count(*)4truncate table t1;start transaction;load data infile '../std_data_ln/loaddata2.dat' into table t1 fields terminated by ',' enclosed by '''';Warnings:Warning 1261 Row 3 doesn't contain data for all columnsrollback;select count(*) from t1;count(*)0drop table t1;
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?