分号是sql的换行符,如:

.
myConnection.Open();
string str="Select * INTO ##temp from [table1];";
str+="Delete From [table1];";
str+="INSERT INTO [table1]";
str+=" Select * from ##temp;";
str+="Drop Table ##temp";
SqlCommand myComm=new SqlCommand(str,myConnection);
myComm.ExecuteNonQuery();
myConnection.Close();
.
浙公网安备 33010602011771号