私は持っている
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)";
エラーが表示される
どうすれば解決できますか?