Forum Replies Created

Viewing 5 posts - 1 through 5 (of 5 total)

  • RE: The Android Car

    DinoRS - Wednesday, March 6, 2019 7:03 AM

    AnOldAmigaUser - Monday, March 4, 2019 1:49 PM

    The car...

  • RE: The Android Car

    The car companies want to get in the data collection business as much as Google and Facebook already are. This is not good news for consumers, especially, car enthusiasts, as...

  • RE: TSQL

    I do not know which sp3 you are running but it worked just fine on mine

    SELECT Serverproperty('Edition') as Edition,

    Serverproperty('EngineEdition') as Engine,

    ...

  • RE: TSQL

    The following works without errors in SQL 2005. The table is created, the values inserted and the results selected.

    Create Table Test(col varchar(10))

    GO

    Insert into Test

    Select 1

    union Select 2

    union Select 3

    union Select...

  • RE: TSQL

    It is the explanation that is wrong. The values are inserted into the table, just fine.

    The error occurs when 'A' is tested Between 1 and 6 in the WHERE clause.

    This...

Viewing 5 posts - 1 through 5 (of 5 total)