Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
データベースから最後の値を取得しようとすると、最初の値が返されます。次のクエリを使用します。
SELECT [Id] from dbo.Tb_Patient;
最後の値を取得したい。どのクエリを使用すればよいですか?
これを試して
SELECT Top(1) [Id] from dbo.Tb_Patient order by Id desc;
Idまたは、自動インクリメント列の場合は、MAX関数を使用して最大値を見つけることもできます。
Id
MAX
SELECT MAX([Id]) from dbo.Tb_Patient