how do we find every fifth record in a table
Answer Posted / krishans
SELECT RowNumber from ( Select ROW_NUMBER() OVER (order by
EmployeeID)as RowNumber
FROM Employee) as x
where x.RowNumber % 5 = 0
| Is This Answer Correct ? | 9 Yes | 3 No |
Post New Answer View All Answers
How will you find out if there are expensive SQL statements running or not?
How to defragment table indexes?
What are blobs, tables, and Queues? Is SQL is the standard way to query blobs, tables, and queues?
What is trace flag in sql server?
What are the new features in SQL Server 2005 when compared to SQL Server 2000?
This question asked during interview, 2) At the end of each month, a new table is created for each bank that contains monthly metrics consolidated at the account level. The table naming convention is bankX_YYYYMM where X represents the numeric designation of the bank and YYYYMM indicates the 4 digit year and 2 digit month. The tables contain the following fields: name data type description account text account number registered boolean indicates whether the account is registered num_trans integer number of transactions made during the time period spend numeric(9,2) total spend during the time period a) Write a SQL query that will display the total number of transactions and total spend for "Bank1" during the 4th quarter of 2009. b) Write a SQL query that will display the total number of transactions and total spend at "Bank1" and "Bank2", broken out by registered vs. non-registered accounts, during January 2010 not sure what is correct answer and how to solve?
Give some Scenario for Non Clusterd index? Can we write system defined functions in side The Function? Wat is the Unique Datatype?
What is federation member?
why would you use sql agent? : Sql server database administration
How to configure and test odbc dsn settings?
Explain transaction server implicit?
How to get nth highest salary from employee table.
How display code or Text of Stored Procedure using Sql query in Sql Server ?
How to replace null values in expressions using isnull()?
How to provide default values to function parameters?