Forum Replies Created

Viewing 10 posts - 46 through 55 (of 55 total)

  • RE: CREATE statement

    Did I am misleading for the answer? Why so many answers are wrong?

    How other members answeredCorrect answers: 55% (374)

    Incorrect answers: 45% (302)

    Total attempts: 676

    --------------------------------------------------------------------------------

    ...

  • RE: ISNUMERIC

    Thank you Fire Drill!

  • RE: ISNUMERIC

    Please try this:

    SET @vchrIsNumeric='$NAME',

    Is Numeric or Is not Numeric?

  • RE: Can This Work?

    Thank for the question,

    I am not sure the definitions for "Infinite loop" and "nesting" and "Recurring" in sql server.

  • RE: Basic SQLCMD Utilities

    Basic SQLCMD Utilities? or Basic SQL CMD Utilities? or Basic SQL CoMmanD Utilities, or Basic SQL Utilities?

    Anyway, good question!

  • RE: Type conversions and Nulls

    Please try:

    declare @k int;

    select

    case when @k=0 OR NOT (@k = 0)

    then cast(0 as date)

    else cast('2012-04-01T10:00:00' as...

  • RE: Matching Missing Field

    I totally agree with you, it is nice to have all aliases listed just for maintainability.

  • RE: Matching Missing Field

    Aliases are not for columns where there is only one column possible.

  • RE: SQL JOINS

    Thanks for all comments. we use aliases in joins. Aliases are not for columns where there is only one column possible. But it is nice to have...

  • RE: concatenation

    good and easy question, thanks

Viewing 10 posts - 46 through 55 (of 55 total)