Viewing 10 posts - 1 through 10 (of 10 total)
Yes, we do have tape. I thought that the process to to roll back would be quite simple, because the process to get the tape is not always simple. :hehe:
Thanks.
October 19, 2009 at 8:35 am
Thank you very much for excellent explanation! 🙂
August 17, 2009 at 9:11 am
Thank you one more time. I think that example with CTE1 is most flexible.
December 12, 2007 at 11:37 am
Wow, what a fast response.
Thank you, Andras, for good idea.:)
December 12, 2007 at 9:06 am
Thank you every one for suggestions. I think the best solution is:
select CustomerID
from ReportB
group by CustomerID
having Max([Year]*12+Month)- Min([Year]*12+[Month])+1 <> Count(*)
May 12, 2005 at 11:51 am
Thank you everyone.
I found good solution:
SELECT a.desc, min(a.id) id1, min(b.id) id2, min(c.id) id3
FROM your_table a
LEFT JOIN your_table b ON a.id <...
February 3, 2005 at 3:12 pm
This does not work because this numbers are just as an example. In fact, there are 3000 rows in a table, and each Desc can...
February 3, 2005 at 12:07 pm
Viewing 10 posts - 1 through 10 (of 10 total)