本文介绍了如何在表sql server c#中获取最后插入的值的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

我想在表ProjectGroup中获取最后插入的groupID



这是表格



ProjectGroup

* GroupID

* GroupName

* ProjectName

I want to get the last inserted groupID int the table ProjectGroup

Here is the table

ProjectGroup
*GroupID
*GroupName
*ProjectName

推荐答案


SELECT TOP(1) GroupID FROM ProjectGroup ORDER BY 1 DESC





如果您需要使用ADO或Linq的C#代码,请告诉我



let me know if you need any code in C# using ADO or Linq



这篇关于如何在表sql server c#中获取最后插入的值的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!

09-21 09:34