Hi
Thnks for the time
I need to insert some values and select a value from another table to insert
insertinto products values(10,'proname','desc',(select modelfrom Products))
How can this be done.
Try:
insert into products(c1, ..., cn)
select 10, 'proname', 'desc', model
from dbo.products
go
AMB
|||Hi
Thnks for the time
I need to insert with values and select statement , can this be done
some thing like this
insertinto products values(10,'proname','desc',(select,Modelfrom Products))
|||
Hi
Thnks for the time
I need to insert with values and select statement , can this be done
some thing like this
insertinto products values(10,'proname','desc',(select,Modelfrom Products))
|||Hi
Thnks for the time
I need to insert with values and select statement , can this be done
some thing like this
insertinto products values(10,'proname','desc',(select,Modelfrom Products))
|||you can do it the other way around
Code Snippet
insertinto products
select 10,'proname','desc', Model
from Products
|||Hi
I need to insert with values and select statement , can this be done
some thing like this
insertinto products values(10,'proname','desc',(select,Modelfrom Products))
|||Put the result of the "select" statement into a variable and use the variable.
declare @.model varchar(25)
set @.modele = (select model from products where producti = @.productid)
insert into products values(10, 'proname', 'desc', @.model)
go
AMB
sql
No comments:
Post a Comment