Access to SQL SERVER query possible?

rsj88

New Member
Joined
Feb 20, 2018
Messages
38
Hi i have a query in Access which i need to work in SSMS/SQLServer. The IF statement in the join does not work due to the operators ">=" in the last AND JOIN. Any ideas how else i can do this in SQLServer

SELECT
TABLEA.Dates,
TABLEA.CAR_ID,
TABLEB.Model_ID,
TABLEB.TYPE_ID
FROM TABLEA
LEFT JOIN TABLEB
ON (TABLEA.CAR_ID = TABLEB.CAR_ID)

AND

iif(B.Role_End_Date is null,
(TABLEA.Dates >= TABLEB.SDate) ,
(TABLEA.Dates >= TABLEB.SDate)
AND (TABLEA.Dates <= TABLEB.EDate) )
 

Excel Facts

Round to nearest half hour?
Use =MROUND(A2,"0:30") to round to nearest half hour. Use =CEILING(A2,"0:30") to round to next half hour.

Forum statistics

Threads
1,215,129
Messages
6,123,214
Members
449,091
Latest member
jeremy_bp001

We've detected that you are using an adblocker.

We have a great community of people providing Excel help here, but the hosting costs are enormous. You can help keep this site running by allowing ads on MrExcel.com.
Allow Ads at MrExcel

Which adblocker are you using?

Disable AdBlock

Follow these easy steps to disable AdBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the icon in the browser’s toolbar.
2)Click on the "Pause on this site" option.
Go back

Disable AdBlock Plus

Follow these easy steps to disable AdBlock Plus

1)Click on the icon in the browser’s toolbar.
2)Click on the toggle to disable it for "mrexcel.com".
Go back

Disable uBlock Origin

Follow these easy steps to disable uBlock Origin

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back

Disable uBlock

Follow these easy steps to disable uBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back
Back
Top