Handy Code for SQL Server | YourSite

Handy Code for SQL Server

SQL SERVER 761 views

Example: How to copy One table to another Table ( Both Data with its Structure)

Code:



SELECT * INTO DestinationTable FROM SourceTable


Example: How to create a data like a table

Code:



SELECT * FROM(
SELECT 1 as ID, 'Rambo' as Name
 UNION
SELECT 2 as ID, 'Azmi' as Name
) AS TableName

Example: How to create a data like above and insert into in a table

Code:



SELECT * INTO DestinationTable FROM (
SELECT 1 as ID, 'Sanjay' as Name
 UNION
SELECT 2 as ID, 'Rumman' as Name
) SourceTable


Example:

Code:



 declare @var varchar(50) = '1,3'  
 declare @query varchar(500) = '
 select * from
(
SELECT  Dept, SUM(Salary) as salarySum, ROW_NUMBER() OVER(ORDER BY Dept) AS Row_Number  FROM EmpSalary GROUP BY  Dept
)ta where ta.Row_Number in ('+ @var +')'
select @query as qry


Example:

Code:



 declare @var varchar(50) = '1,3'  
 declare @query varchar(500) = '
 select * from
(
SELECT  Dept, SUM(Salary) as salarySum, ROW_NUMBER() OVER(ORDER BY Dept) AS Row_Number  FROM EmpSalary GROUP BY  Dept
)ta where ta.Row_Number in ('+ @var +')'
exec(@query)


Example: Core Code


-- All the databases that are present
select * from sys.databases

select * from sys.database_files
select physical_name from sys.database_files

🚀 More Blogs You Might Like

Explore more articles and keep learning

What is Bounce Rate in SEO? Complete Guide for Beginners
search-engine-optimization
What is Bounce Rate in SEO? Complete Guide for Beginners

Learn what bounce rate is in SEO, how it is calculated, why it matters, common causes of high bounce rates, an...

👁 28 2026-05-24
Read More →
Comprehensive Interviewer Guide - Detailed Article
skill
Comprehensive Interviewer Guide - Detailed Article

Learn how to conduct effective interviews with this comprehensive interviewer guide. Explore hiring strategies...

👁 43 2026-05-22
Read More →
Five Industry Shifts Reshaping the AI Ecosystem (2026 Trends)
skill
Five Industry Shifts Reshaping the AI Ecosystem (2026 Trends)

Five Industry Shifts Reshaping the AI Ecosystem (2026 Trends)...

👁 38 2026-05-19
Read More →
How to Grow Your Business Mindset Step by Step
skill
How to Grow Your Business Mindset Step by Step

Learn how to develop and grow a successful business mindset step by step. Discover entrepreneurial thinking, p...

👁 56 2026-05-09
Read More →