Viewing 15 posts - 31 through 45 (of 53 total)
Hi Draw.
I tried your 2nd solution, and it is much slower than the earlier solutions... (for 160 currencies)
October 17, 2016 at 8:42 am
This gives exactly what I want. The "cross apply" function is new to me.... wil look into that.
Thanks alot... if ever we meet, I bye you a beer!
October 15, 2016 at 6:46 am
That's right. I want a list with ALL currencies and their most recent rate at a certain date (example on Oct 3)
October 15, 2016 at 5:09 am
This gives me a list of all days, not the rates on 2016-10-3
October 14, 2016 at 2:16 pm
Sean Lange (10/14/2016)
marc.corbeel (10/14/2016)
I paste a peace of code text with a double space in it, in the topic reply text box, and once saved, the...
October 14, 2016 at 2:02 pm
Forum admin... this is creepy!
I paste a peace of code text with a double space in it, in the topic reply text box, and once saved, the double space is...
October 14, 2016 at 1:58 pm
one more try
ltrim(rtrim(replace(coalesce(FirstName,'')+' '+coalesce(MiddleName,'')+' '+coalesce(LastName,''), ' ', ' ')))
October 14, 2016 at 1:55 pm
This is strange...
when I copy from my SQL studio Manager to this forum, each time the double space is replaced by single one
Anyone knows this issue???
October 14, 2016 at 1:54 pm
I clearly typed a space in stead of two... sorry
ltrim(rtrim(replace(coalesce(FirstName,'')+' '+coalesce(MiddleName,'')+' '+coalesce(LastName,''), ' ', ' ')))
October 14, 2016 at 1:53 pm
Sean Lange (10/14/2016)
marc.corbeel (10/14/2016)
here is how I do thisreplace(coalesce(FirstName,'')+' '+coalesce(MiddleName,'')+' '+coalesce(LastName,''), ' ', ' ')
What is the point of the replace here? You are replacing all single spaces with...
October 14, 2016 at 1:46 pm
Sean Lange (10/14/2016)
marc.corbeel (10/14/2016)
here is how I do thisreplace(coalesce(FirstName,'')+' '+coalesce(MiddleName,'')+' '+coalesce(LastName,''), ' ', ' ')
What is the point of the replace here? You are replacing all single spaces with...
October 14, 2016 at 1:44 pm
Sean Lange (10/14/2016)
marc.corbeel (10/14/2016)
October 14, 2016 at 1:35 pm
marc.corbeel (10/14/2016)
here is how I do thisbest include trims also
ltrim(rtrim(replace(coalesce(FirstName,'')+' '+coalesce(MiddleName,'')+' '+coalesce(LastName,''), ' ', ' ')))
October 14, 2016 at 1:26 pm
here is how I do this
replace(coalesce(FirstName,'')+' '+coalesce(MiddleName,'')+' '+coalesce(LastName,''), ' ', ' ')
October 14, 2016 at 1:22 pm
This is not correct. If I insert the line
('2016-1-2 14:10:00','2016-1-2 14:20:00'),
into your sample rows the result changes, and this should not be the case as this timespan is already...
October 8, 2016 at 3:25 am
Viewing 15 posts - 31 through 45 (of 53 total)