Closed favorinfo closed 6 years ago
I've get the sql command like insert a(k,k,k) values (a,a,a),(b,b,b),(c,c,c);
insert a(k,k,k) values (a,a,a),(b,b,b),(c,c,c);
Once I formatted the sql commands, it ran out
insert into a ( k, k, k ) values ( a, a, a ), ( b, b, b );
is there anyways to format the commands to
insert into a(k,k,k) values (a,a,a), (b,b,b);
sorry for uploading the error issues
I've get the sql command like
insert a(k,k,k) values (a,a,a),(b,b,b),(c,c,c);
Once I formatted the sql commands, it ran out
is there anyways to format the commands to