ASP.NET 动态创建数据库表的问题 请大家看看这段代码哪错了,这样做为什么不能在已有的数据库上创建数据库表
using (SqlConnection sqlcnn = new SqlConnection(sqlstr)) { using (SqlCommand sqlcmm = sqlcnn.CreateCommand()) { string cmmstr = "CREATE TABLE users"; sqlcmm.CommandText = cmmstr; sqlcnn.Open(); int a = sqlcmm.ExecuteNonQuery(); } }
------解决方案--------------------
表结构和数据统统过来:select * into newtable from newtable 如果不要数据再:delete from newtable
------解决方案-------------------- select * into newtable from oldtable