Advertisement
makispaiktis

Query 2 - Select top 1000 rows

Jun 6th, 2023
898
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
SQL 0.15 KB | Source Code | 0 0
  1. SELECT TOP (1000) [DepartmentID]
  2.       ,[Name]
  3.       ,[GroupName]
  4.       ,[ModifiedDate]
  5.   FROM [AdventureWorks2012].[HumanResources].[Department]
  6.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement