Hi
Bandi
Create Table AProd
(
ProdId int primary key identity(1,1),
ProdName varchar(300)
)
Insert into AProd values('Product Of Optical Mouse')
Insert into AProd values('Product of 101 Keyboard White')
Insert into AProd values('Product of Kingston Pendrive Black')
Insert into AProd values('Product of Monitor')
Insert into AProd values('Product of MotherBoard')
Select * from AProd
I need this Output like this
1 Optical Mouse
2 101 Keyboard White
3 Kingston Pendrive Black
4 Monitor
5 MotherBoard
Mark as Answer if its helpful to you
Kumaraspcode2009@gmail.com