Viewing 15 posts - 601 through 615 (of 819 total)
CELKO (10/24/2011)
Why did you encourage him? Sounds like time for re-education:w00t:
I agree.
October 25, 2011 at 1:18 am
charlietuna (10/23/2011)
update #t
set col1 = case col1...
October 24, 2011 at 1:06 am
Stewart "Arturius" Campbell (10/21/2011)
Good question...even then, the sort order of any select from the view is not guaranteed....
In fact, the TOP clause with the "ORDER BY", in this case, is...
October 21, 2011 at 2:10 am
paul.knibbs (10/21/2011)
Carlo Romagnano (10/21/2011)
CREATE VIEW vw_clients ASSELECT TOP 100 PERCENT Code, Name FROM Clients
ORDER BY Code
I am curious to know if the VIEW above always returns records in sorted...
October 21, 2011 at 2:07 am
CREATE VIEW vw_clients AS
SELECT TOP 100 PERCENT Code, Name FROM Clients
ORDER BY Code
I am curious to know if the VIEW above always returns records in sorted order.
October 21, 2011 at 1:04 am
palotaiarpad (10/11/2011)
That was a nice question. But in production code i would have used paraenthesis for better readability. 😛
Me, too! 😀
October 11, 2011 at 1:04 am
venus.pvr (10/10/2011)
Comments posted to this topic are about the item <A HREF="/articles/Regular+Expressions/75121/">Using Regular expression to convert PL/SQL code to TSQL</A>
Thanks! I found it very interesting for Regular expression syntax.
October 11, 2011 at 12:55 am
I get it wrong, but I like this kind of questions.
Thanks.
October 5, 2011 at 1:19 am
tommyh (10/3/2011)
The other being that the answer is wrong. They both perform equally. I have...
October 3, 2011 at 2:42 am
shayk (9/22/2011)
Nice, but the SP unnecessary. You can write in the SSMS "Select TOP 50 * FROM "
I also use this "Select TOP 50 * FROM ". It is better...
September 22, 2011 at 1:17 am
Olga B (9/13/2011)
select 0 [A]
A fun bug to find when I accidentally delete a comma and then try to figure out what's...
September 14, 2011 at 1:56 am
Tom.Thomson (9/13/2011)
The misprints in the explanation may have left some people confused. All three alias forms are wrong (1st missing "= <", second and third...
September 14, 2011 at 1:41 am
Unfortunately, the editor to contribute with a question, sometime, changes the text both in the question and more often in the explanation. Yesterday, the explanation of "Unary & Aliases" was...
September 14, 2011 at 1:37 am
Viewing 15 posts - 601 through 615 (of 819 total)