Tech
Forums
Jobs
Books
Events
Videos
Live
More
Interviews
Certification
Training
Career
Members
News
Blogs
Contribute
An Article
A Blog
A Video
An Ebook
An Interview Question
Register
Login
6
Answers
how to retuen parameter in SP with index and Pagesize 10
viral patel
7y
298
1
Reply
user can exec 5,10
that time disply record of 51 To 63 using Stored Procedure
CREATE PROCEDURE dbo.spGetEmployees
(
@StartRow INT = 1,
@RowCount INT = 10
)
AS
BEGIN
// logic
END
exec dbo.spGetEmployees(5)
out put will be 51 To 63 Record display
Post
Reset
Cancel
Answers (
6
)
Next Recommended Forum
capitalise the first letter of each word in a string
Data Compression