Viewing 15 posts - 136 through 150 (of 3,956 total)
Jeff Moden (4/16/2015)
My greatest disappointment is that MS doesn't have a datetime conversion for Pig Latin. 😛
Easy enough.
DECLARE @MyDate DATETIME = '2014-01-01';
SELECT UPPER(SUBSTRING(ds,2,1)) + SUBSTRING(ds,3,1) + LOWER(LEFT(ds,1)) + 'ay' +...
April 16, 2015 at 5:45 pm
Luis Cazares (4/9/2015)
Original source of the picture in here: http://www.moef.dk/fishfingers/
I need to call my lawyer. They've violated my patent rights. :w00t:
That is awesome Luis!
April 10, 2015 at 5:59 am
Some simple solutions have already been posted, but there are also some queries/string manipulation techniques in this article that would help you pull any of the data out of your...
April 9, 2015 at 9:18 pm
SELECT *
FROM employee e
JOIN deltavalues d
ON e.planid = d.planid
WHERE e.balance BETWEEN d.baseval AND
CASE d.highval
...
April 9, 2015 at 9:11 pm
bhattpranav (4/9/2015)
It's weird...
April 9, 2015 at 6:33 pm
Jeff Moden (4/9/2015)
dwain.c (4/9/2015)
I've written on Calendar tables[/url] and how they can be used (An Easter SQL[/url])....
April 9, 2015 at 6:30 pm
Sean Lange (4/9/2015)
Luis Cazares (4/9/2015)
I finally found Dwain's secret.It won't display here. Says the image contains errors. :w00t:
Maybe that's what he means after the code I posted to his recent...
April 9, 2015 at 5:55 pm
A general question here to Jeff and Joe then. Let's hear your thoughts.
I've written on Calendar tables[/url] and how they can be used (An Easter SQL[/url]). Clearly they're...
April 9, 2015 at 5:51 pm
Wayne West (4/9/2015)
April 9, 2015 at 5:41 pm
ScottPletcher (4/9/2015)
COBOL is not inherently evil, it's a language like any other...
Totally agree with this. Its designers were evil. 😛
April 9, 2015 at 5:34 pm
dwain.c (4/9/2015)
bhattpranav (4/8/2015)
--INSERT INTO #Context( OrderId )
SELECT tinclude.OrderId FROM ( SELECT v.OrderId FROM dbo.mdv_CustomerFilterCustomerTransDate v WITH (NOLOCK)
WHERE v.TerritoryCode IN (3) AND v.CustomerId = 649 AND...
April 9, 2015 at 5:32 pm
immaduddinahmed (4/9/2015)
hi,i try count function + datename function and also datediff function but no use.
i cant merge same dates
please help me out
thanks for the help
Try converting your DATETIME value...
April 9, 2015 at 12:40 am
bhattpranav (4/8/2015)
--INSERT INTO #Context( OrderId )
SELECT tinclude.OrderId FROM ( SELECT v.OrderId FROM dbo.mdv_CustomerFilterCustomerTransDate v WITH (NOLOCK)
WHERE v.TerritoryCode IN (3) AND v.CustomerId = 649 AND (...
April 9, 2015 at 12:37 am
immaduddinahmed (4/9/2015)
my data is looks like this,
Date---------------------------------------A
2015-03-01 13:38:07.343----------------1
2015-03-01 14:04:04.460----------------1
2015-03-02 19:33:55.117----------------3
2015-03-02 19:33:55.117----------------4
2015-03-02 19:39:26.580----------------1
i want data looks like this
Date-------------------------------------------A
Day 1------------------------------------------2
Day 2------------------------------------------8
please can any one provide me a query.
please help me out
Thanks for...
April 9, 2015 at 12:28 am
Jeff Moden (4/8/2015)
AncientCitySQL (4/8/2015)
April 8, 2015 at 9:15 pm
Viewing 15 posts - 136 through 150 (of 3,956 total)