Viewing 3 posts - 1 through 4 (of 4 total)
This is a shortened version of the working code. In the full version there are a lot more CASE statements for each section.
CREATE PROCEDURE dbo.sp_employeecalcfields(@Company int,@EmployeeId bigint)
AS
SELECT
--...
August 13, 2003 at 12:28 pm
#469804
I have it working using a case structure right now, but it just does not seem to be like the most efficient way it could be done. I end...
August 12, 2003 at 9:02 am
#469592
This method would work if I was looking them up one at a time and there was only one default flag in the table, but there is a default flag...
August 12, 2003 at 6:58 am
#469551