gpt4 book ai didi

sql - 如何在列的 sql select 语句中插入新的 guid

转载 作者:行者123 更新时间:2023-12-05 08:24:18 24 4
gpt4 key购买 nike

我有以下选择语句:

string query = @"Select Sudent, " + Guid.NewGuid() + " as  Id, Name, DOB from Student where Name = Ken";

然后我在 bulkcopy 命令中使用此语句在表中执行插入操作。但问题是它只为所有 5 行生成 1 个 guid 并抛出错误。我如何为列 ID 的所有 5(或任意数量的行选择获取)行获取不同的 guid。

最佳答案

string query = @"Select Student, newid() as  Id, Name, DOB from Student where Name = Ken";

关于sql - 如何在列的 sql select 语句中插入新的 guid,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/12324650/

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