Viewing 15 posts - 151 through 165 (of 812 total)
Any select could be surrounded by parenthesis:
(select * from sys.objects WHERE name like 'sys%')
(select * from sys.indexes WHERE name like 'c%')
December 15, 2016 at 10:21 am
Stewart "Arturius" Campbell (11/14/2016)
However, as I am sure you are aware, the sequence is important:
if the query is changed toSELECT 0
UNION
SELECT 1
UNION
SELECT NULL
UNION ALL
SELECT NULL
UNION
SELECT 2;, the...
November 15, 2016 at 1:25 am
Steve Jones - SSC Editor (11/3/2016)
November 4, 2016 at 1:59 am
Despite of the confusion, it's a good question.
November 2, 2016 at 10:25 am
handkot (10/26/2016)
I think the answer is 5, can also be considered corrector am i wrong?
You're wrong!
CONCATENATE concatenates only two string. CONCATENATE(<text1>,<text2>)
CONCATENATEX concatenates ALL values of a table. See the...
October 27, 2016 at 1:02 am
Rune Bivrin (9/23/2016)
"The syntax of the batch is correct" is not really an output of the batch, but the conclusion of the parser. That message...
September 23, 2016 at 1:18 am
Aaron N. Cutshall (9/22/2016)
September 22, 2016 at 7:03 am
When I posted the qotd, all names were lower case. I don't know who capitalized them.
My instance of sqlserver has the binary collation.
September 22, 2016 at 3:12 am
Igor Micev (9/21/2016)
Carlo Romagnano (9/21/2016)
The SQL Server 2014 Standard Edition can use up to 16 physical cores. If hyper-threading is enabled on a 16-core server, then there...
September 21, 2016 at 3:27 am
Boh, I don't understand:
The SQL Server 2014 Standard Edition can use up to 16 physical cores. If hyper-threading is enabled on a 16-core server, then there are 32 logical processors,...
September 21, 2016 at 2:52 am
From BOL:
The maximum number of rows that can be constructed by inserting rows directly in the VALUES list is 1000
September 16, 2016 at 3:32 am
gareth.davison (9/16/2016)
paul.knibbs (9/16/2016)
September 16, 2016 at 3:31 am
Viewing 15 posts - 151 through 165 (of 812 total)