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

Ambidextrous Undo
Undo last command with Ctrl+Z or Alt+Backspace. If you use the Undo icon in the QAT, open the drop-down arrow to undo up to 100 steps.

Forum statistics

Threads
1,225,190
Messages
6,183,448
Members
453,160
Latest member
DaveM_26

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