Viewing 4 posts - 1 through 4 (of 4 total)
I had a similar problem with a project I was working on. I opted to use an additional table to join against that defined the day schedules for a week....
September 15, 2009 at 7:08 am
Can you be a little more specific? For example, will you have more than one level of parent/child hierarchy? Is this simply to populate a list box or drop down...
August 28, 2009 at 7:28 am
Here is a very simple way to achieve what you are looking for.
SELECT TOP 1 empid,empWage
FROM
(
SELECT TOP 4 empid,empWage
FROM Empdetails
ORDER BY empid DESC
) a
ORDER BY a.empid ASC
August 28, 2009 at 7:13 am
I am wondering why you are putting a transaction inside a transaction. Although this is not unheard of and certainly useful at times, if you attempt to rollback the outside...
August 27, 2009 at 2:24 pm
Viewing 4 posts - 1 through 4 (of 4 total)