Forum Replies Created

Viewing 6 posts - 6,826 through 6,831 (of 6,831 total)

  • RE: Question of the Day for 02 Jun 2005

    I agree with Tim 100%.  The code suggested would not necessarily work and presumably would be less efficient than a not check.  Very frequently when the qod is a T-SQL...

  • RE: Question of the Day for 04 Jun 2004

    I assumed that too and got it right, but why not make the question match the answer:

    Bill needs to show the day of the week for today's date on a...

  • RE: Question of the Day for 04 Jun 2004

    Silly premise for the question, since it would require that the highest sales always occur on the current day.  Just don't try rerunning the report

  • RE: Need Help removing leading tab

    I think you can remove leading tab(s) directly within a SELECT, without any CASE or loop, for example:

    DECLARE @tabPattern VARCHAR(8)

    SET @tabPattern = '%[^' + CHAR(9) + ']%'

    DECLARE @tabRemove VARCHAR(200)

    SET @tabremove...

  • RE: Question of the Day for 04 May 2004

    I would prefer simply:

    CHECK(minit LIKE '[ A-Z]')

    Why split it into two checks?

     

  • RE: Crosstab aggregate error, A Stumper!

    You do understand that multiple CASE conditions could be true for the same value and that a single value could be added to every total?

    For example, if cas_lbs...

Viewing 6 posts - 6,826 through 6,831 (of 6,831 total)