gpt4 book ai didi

c# - 如何使用C#为sql server的表添加一列?

转载 作者:太空狗 更新时间:2023-10-29 19:53:28 25 4
gpt4 key购买 nike

如何使用C#为sql server的表添加列?

例如我想在C#代码中执行如下sql:

alter table [Product] add 
[ProductId] int default 0 NOT NULL

最佳答案

你应该使用命令:


using (DbConnection connection = new SqlConnection("Your connection string")) {
connection.Open();
using (DbCommand command = new SqlCommand("alter table [Product] add [ProductId] int default 0 NOT NULL")) {
command.Connection = connection;
command.ExecuteNonQuery();
}
}

关于c# - 如何使用C#为sql server的表添加一列?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/1351651/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com