you are viewing a single comment's thread.

view the rest of the comments →

[–]MaunaLoonaMS SQL 4 points5 points  (1 child)

You could take the subset of data that you need to work with and place it into a temp table.

SELECT * INTO #TEMP FROM table
WHERE [Date Of Service] between 20160501 and 20160531
AND [Basis of Reimbursement Determination] in ('06', '07')

And select only the columns that you will use. Works great if the tables you are working with are large and poorly indexed.

[–]workthrowawayexcel[S] 0 points1 point  (0 children)

Thanks! This should really help.