Microsoft
Software
Hardware
Network
Question : SQL UPDATE Script Help needed.
I have a two part question ....
First thing is I need to Identify the procedures where dbo.ProceduresFeeSchedule.
ContractTy
peCodeMId IS NOT NULL.
from
SELECT
dbo.ProceduresFeeSchedule.
FeeSchedul
eId,
dbo.ProceduresFeeSchedule.
Fee,
dbo.ProceduresFeeSchedule.
ContractTy
peCodeMId,
dbo.Procedures.Code,
dbo.Procedures.CPTCode
FROM
dbo.ProceduresFeeSchedule
INNER JOIN dbo.Procedures ON dbo.ProceduresFeeSchedule.
Procedures
Id = dbo.Procedures.ProceduresI
d
WHERE
RIGHT(p.Code , 1) = 'T' AND
( dbo.ProceduresFeeSchedule.
FeeSchedul
eId = 35 ) OR
( dbo.ProceduresFeeSchedule.
FeeSchedul
eId = 36 )
I thought I could add in like this, but it returned values in my Code field that did not have a 'T'.
SELECT
dbo.ProceduresFeeSchedule.
FeeSchedul
eId,
dbo.ProceduresFeeSchedule.
Fee,
dbo.ProceduresFeeSchedule.
ContractTy
peCodeMId,
dbo.Procedures.Code,
dbo.Procedures.CPTCode
FROM
dbo.ProceduresFeeSchedule
INNER JOIN dbo.Procedures ON dbo.ProceduresFeeSchedule.
Procedures
Id = dbo.Procedures.ProceduresI
d
WHERE
dbo.ProceduresFeeSchedule.
ContractTy
peCodeMId IS NOT NULL AND
RIGHT(p.Code , 1) = 'T' AND
( dbo.ProceduresFeeSchedule.
FeeSchedul
eId = 35 ) OR
( dbo.ProceduresFeeSchedule.
FeeSchedul
eId = 36 )
After I fix this part, I need to do an update script based off this ....
UPDATE
ProceduresFeeSchedule
SET
dbo.ProceduresFeeSchedule.
ContractTy
peCodeMId = NULL
WHERE
..... my rows where dbo.ProceduresFeeSchedule.
ContractTy
peCodeMId was not null
Answer : SQL UPDATE Script Help needed.
you were missing logically grouping your OR statement together...which explains why you were getting results you weren't expecting.
Random Solutions
Using rand() to generate data
Excle not recognizing number as text
can't access sbs2003 network resources
works for \ but not "
Phones
Windows 64bit SQL 2005 Express CLR Install Mystery
Export Project Tasks assigned to a single individual
Add only the positive numbers between a date range
Slow powershell script....any way to speed it up?
SQL Percentage Results