选择主键

发布于 2024-07-13 04:46:24 字数 254 浏览 9 评论 0原文

[更新:MS SQL Server 2005]

您好,是否可以选择一堆值,然后在 select 语句中指定一列作为主键?

SELECT ID FROM HQ AS PRIMARYKEY -- this is wrong
SELECT Names FROM Stores
SELECT PRODUCTNAME FROM PRODUCTS

我问这个是因为我想利用.net中的DataRow find方法,谢谢。

[UPDATE: MS SQL Server 2005]

Hi is it possible to select a bunch of values, and then assign a column in the select statement as the primary key?

SELECT ID FROM HQ AS PRIMARYKEY -- this is wrong
SELECT Names FROM Stores
SELECT PRODUCTNAME FROM PRODUCTS

I ask this because I want to take advantage of the DataRow find method in .net, thank you.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

冷︶言冷语的世界 2024-07-20 04:46:25

填充数据集后,您必须使用 DataTable 对象指定主键,而不是在 sql 查询中指定主键。

myTable.PrimaryKey = new DataColumn[] {
    myTable.Columns["SomeColumn"]
};

然后你可以使用Find()方法

After populating your dataset, you have to specify the primary key with the DataTable object, not in your sql query.

myTable.PrimaryKey = new DataColumn[] {
    myTable.Columns["SomeColumn"]
};

Then you can use the Find() method

就像说晚安 2024-07-20 04:46:25

不,我不认为你可以做到这一点,即让 SQL Server 将准备好的索引传递给 .NET 应用程序。 您可以向 DataTable 添加一个索引来保存数据,它将在客户端构建。

No I don't think you can do that, that is have SQL server pass a ready index to the .NET app. You can add an index to the DataTable which will hold the data, it will be build on the client side.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文