Inserting a cloum in a stored procedure

I

iHavAQuestion

I have stored procedure
In @var1/Col1 I need to insert, the max(col) from another table in the
same database.


Create Stored Procedure Name
(
@Var1
@Var2
@Var3
)
Inseret into table1
(
Col1
col2
col3
)
Values
(
@Var1
@Var2
@Var3
)
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top