create table mytable (i int,j int) row format delimited fields terminated by '"';
create table mytable (i int,j int) row format delimited fields terminated by "'";
或
create table mytable (i int,j int) row format delimited fields terminated by '\'';
create table mytable (i int,j int) row format delimited fields terminated by "\"";
1条答案
按热度按时间uinbv5nw1#
当使用十进制表示法时,可以使用整个基本ascii范围(十进制0-127)进行测试。
避免使用
\n
或\r
.至于
"
以及'
,可以很简单-或