Hello and good morning. I am VERY new to this whole SQL thing.
I am trying to update a monthly sales scorecard in SQL, I have the scorecard insert opened up in SQL, as well as the info that needs to go on it however I am stumped when it comes to updating it.
This is the text on the scorecard right now:
INSERT INTO dbo.ScorecardSalesGoals
(SalesRep,Period,Goal)
VALUES('HMS','2013-4-01',70000.00)
GO
I'm stumped to where I put the sales rep, the month and the amount.
I am trying to update a monthly sales scorecard in SQL, I have the scorecard insert opened up in SQL, as well as the info that needs to go on it however I am stumped when it comes to updating it.
This is the text on the scorecard right now:
INSERT INTO dbo.ScorecardSalesGoals
(SalesRep,Period,Goal)
VALUES('HMS','2013-4-01',70000.00)
GO
I'm stumped to where I put the sales rep, the month and the amount.