有可能做一个
create table <mytable> as select <query statement>
运用
row format delimited fields terminated by '|';
Run Code Online (Sandbox Code Playgroud)
或做一个
create table <mytable> like <other_table> row format delimited fields terminated by '|';
语言手册似乎表明没有......但是我曾经在过去做过这件事.