Handy Code for SQL Server | YourSite

Handy Code for SQL Server

SQL SERVER 772 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

Data Science Roadmap: From Complete Beginner to Job-Ready Practitioner
Data-Science
Data Science Roadmap: From Complete Beginner to Job-Ready Practitioner

Data Science Roadmap: From Complete Beginner to Job-Ready Practitioner...

👁 10 2026-07-26
Read More →
How AI Is Changing the Way Software Is Made
Data-Science
How AI Is Changing the Way Software Is Made

How AI Is Changing the Way Software Is Made...

👁 7 2026-07-26
Read More →
8 Mistakes That Quietly Slow Down Talented Developers
Personal-Development
8 Mistakes That Quietly Slow Down Talented Developers

8 Mistakes That Quietly Slow Down Talented Developers...

👁 29 2026-07-12
Read More →
Does religion teach hatred?
islam
Does religion teach hatred?

It is easy to spread hatred in the name of religion, but understanding the true message of religion is much de...

👁 319 2026-06-30
Read More →