我有
CmdString = "insert into Team_table (name1, name2, result1, result2) (select t1.name,t2.name,NULL,NULL from teams t2 cross join teams t1)";
当我通过 presssiin 将它分成 2 列时,输入就像
CmdString = "insert into Team_table (name1, name2, result1, result2)
(select t1.name,t2.name,NULL,NULL from teams t2 cross join teams t1)";
出现错误
我该如何解决?