Below query is useful to select 50% data from SQL table:
Select top 50 percent * from Employee;
This query will show 50% data from total table records.This is mostly asked interview question.
Below query is useful to select 50% data from SQL table:
Select top 50 percent * from Employee;
This query will show 50% data from total table records.This is mostly asked interview question.
Copyright (c) 2024 DotNetFullStackDeveloper All Right Reserved
0 Comments
If you have any queries, please let me know. Thanks.