Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations TouchToneTommy on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Data Type

Status
Not open for further replies.

NoKeS

Programmer
Sep 27, 2001
21
PT
HI,
I want to insert a value in my table in dollars and in escudos
wich is the code for it?
Help me please!
The code that I have is:
Create Procedure InserirPreco
(
@Artigo_ID bigint,-- PRIMARY KEY Not Null,
--@DataPreco datetime,
@Preco smallmoney

)

AS

Insert into ArtigoPreco
VALUES (@Artigo_ID,getdate(), @Preco)
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top