Viewing 2 posts - 16 through 17 (of 17 total)
This should help you transistion your MS Access to SQL Database
Hope this helps...
April 14, 2010 at 7:38 pm
#1151844
Please check this sample...
create table #temp (num int, cname varchar(50), dt smalldatetime)
insert #temp select 123, 'a', '2-3-2010 12:35:29'
insert #temp select 123, 'a', '12-4-2010 12:35:29'
select num, cname, max(dt) from #temp group...
April 14, 2010 at 7:34 pm
#1151842