Viewing 15 posts - 5,701 through 5,715 (of 15,381 total)
Is all of your data actually text? This is a very strange requirement to say the least.
February 14, 2014 at 1:57 pm
SQLRNNR (2/14/2014)
Sean Lange (2/14/2014)
SQLRNNR (2/14/2014)
February 14, 2014 at 12:38 pm
SQLRNNR (2/14/2014)
February 14, 2014 at 12:27 pm
TheGreenShepherd (2/14/2014)
SELECT Customer.CustomerId, Location.Description
FROM Customer
LEFT JOIN Location ON Customer.LocationId = Location.LocationId
It's a left join here because LocationId may be NULL in the Customer...
February 14, 2014 at 12:26 pm
born2achieve (2/14/2014)
Thanks for your reply.
If the value is null then get the column form the pivot which is date and get the "daysinlate" data from table compaany based on...
February 14, 2014 at 12:17 pm
if you execute the ready made query which is my first code block it will execute fine and after 2013-08-11 the recordscount values will null on the output.
my requirement...
February 14, 2014 at 11:53 am
So do you have this figured out now or do you still need some help?
February 14, 2014 at 11:40 am
This issue is incredibly to solve. You would have had an answer several hours ago if you would have read the part in my first post about posting ddl, sample...
February 14, 2014 at 10:25 am
Luis Cazares (2/14/2014)
What do you mean by O/P?DATEDIFF will always return whole numbers.
I assume they meant output.
February 14, 2014 at 10:23 am
dhananjay.nagarkar (2/14/2014)
I needed a urgent help on a critical task, for a field named "[ORC Position Duration (months)]"- I need to Calculate number of days from the...
February 14, 2014 at 8:20 am
Greg Edwards-268690 (2/14/2014)
Oooooppsss, I see I missed the extra from in the upper query.
Easy to miss with poor formatting. 😉
February 14, 2014 at 8:09 am
crazy_new (2/12/2014)
SELECT InvNo,InDate,CaseNo,ClientRef,Curr,InvFullAmount,InvOutstAmount From DebtTran
FROM DebtTran
WHERE NameNo = (SELECT TOP 1 (NameNo) FROM DebtTran).
How would this be written in MS Access.
Thanks...
February 14, 2014 at 7:48 am
Luis Cazares (2/13/2014)
Sean Lange (2/13/2014)
February 13, 2014 at 10:51 am
So the little one decided to share the flu with both mommy and daddy. I am so glad we teach our children to share. I am about a day behind...
February 13, 2014 at 9:13 am
Concurrency could be an issue with this proc also. They dynamic sql does a SELECT INTO without checking if the table exists. If there are two people running this proc...
February 11, 2014 at 12:01 pm
Viewing 15 posts - 5,701 through 5,715 (of 15,381 total)