Tagged Questions

3
votes
3answers
41 views

Are both queries the same?

Are both queries are same ? Do both return the same result ? 1) IF EXISTS( SELECT 1 FROM Users u WHERE u.UPIN = @AttendingDoctorID) BEGIN SELECT ...
3
votes
5answers
154 views

How do I use the value from row above when a given column value is zero?

I have a table of items by date (each row is a new date). I am drawing out a value from another column D. I need it to replace 0s though. I need the following logic: when D=0 for that date, use the ...
1
vote
2answers
101 views

Replace SQL Query

I want to replace this Query DECLARE @tmpUser TABLE( UserId INT, UserType INT ) INSERT INTO @tmpUser SELECT u.UserId, 1 FROM Users u (nolock) WHERE u.UPIN = @AttendingDoctorID IF ...
1
vote
2answers
244 views

CASE in ORDER BY few columns

Using a case-then block, I need to choose how to order my SQL 2008 query, by [status] ASC, [date] DESC or just [date] DESC. I know only how to use one column: SELECT * FROM table ORDER BY CASE ...