Click here to Skip to main content
15,892,768 members
Please Sign up or sign in to vote.
1.00/5 (1 vote)
See more:
I want to insert new costcode values in to table only if the new value dose not exsist in costcode column already.
if it exsists so
the TranDate and amount will be updated for the exsisting cost code.

Simply:
if costCode exsist then update tranDate and amount else insert new row with new valuse for each column.

CostCode TranDate Amount
04 31/01/2013 12:00:00 AM 262033.83
07 31/01/2013 12:00:00 AM 31579.87
01 31/01/2013 12:00:00 AM 980834.24
09 31/01/2013 12:00:00 AM 197237.28

I need help urgently.

please someone help me here.
thanks
Posted
Comments
joshrduncan2012 21-Feb-13 14:11pm    
Saying it's urgent doesn't get guarantee you a quicker reply. What have you tried so far to accomplish this task?

if(Exists(select 1 from tbl where costcode=yourcode))
begin

your update sql;
end

else

begin

insert sql

end
 
Share this answer
 
v2
Query your table to see if your cost codes exists if it does then update the values that need to be updated, if it doesnt insert your new record.

SQL,

http://www.w3schools.com/sql/default.asp[^]
 
Share this answer
 

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900