Viewing 10 posts - 1 through 10 (of 10 total)
Hello,
Thanks for your feedback. You're the best.
November 1, 2007 at 6:41 pm
Hi,
Thanks for your response quickly. What if two tables having the same PurchaseDate? This is sample data only, but my actual large data got the same PurchaseDate. I want to...
October 28, 2007 at 8:43 am
Hi,
Thanks for your help. Actually, I was not a person to create the table structure. This table share with a lot of developers. So, I could not change the data...
October 24, 2007 at 8:51 am
Hello Matt,
Back to your code that you helped me as following:
update T
set T.saleamount=tot.Totsales
from salestable T inner join
(select t1.Id, sum(t1.saleamount) as Totsales from salestable T1 group by t1.id) tot
on t.id=tot.id
I...
October 23, 2007 at 10:36 pm
Hello all,
I have some questions back on the code that you helped me, Rajesh. Your code have solved my questions on how to filter the duplicated records, but not stored...
October 23, 2007 at 10:25 pm
Hello Rajesh,
Thanks for your code genius . It works perfectly. I really appreciate it.
October 21, 2007 at 4:00 am
Hi,
Thank for your help quickly to solve my question. In fact, I got a data table which need to be updated that way for moving cost. I got multi duplicated...
October 18, 2007 at 10:23 pm
Hi,
Your sample SQL did not relate to my question at all. Anyway, thank for your attention.
October 15, 2007 at 11:12 am
I got the answer from other TSQL for SS2K5. The solution was
SELECT *
FROM CustomerRecords
WHERE SSN IN
...
October 13, 2007 at 11:15 pm
Based on your TSQL, I used the following query:
SELECT * FROM CustomerRecords
WHERE SSN IN
...
October 13, 2007 at 11:11 pm
Viewing 10 posts - 1 through 10 (of 10 total)