I have to either Join 4 tables, or retrieve one column from 3 tables, and one record from another.
I can use a stored procedure to do the JOINs (doing that now), but it seems like overkill if I need one or two columns from each of the other tables.
Alternatively, I could use OUTPUT parameters and do separate SELECT statements for each Table.
Just looking for advice on making this process more performant.
Regards
I can use a stored procedure to do the JOINs (doing that now), but it seems like overkill if I need one or two columns from each of the other tables.
Alternatively, I could use OUTPUT parameters and do separate SELECT statements for each Table.
Just looking for advice on making this process more performant.
Regards
Comment