Forum Replies Created

Viewing 15 posts - 46 through 60 (of 319 total)

  • Reply To: Combining Numpy Arrays

    Thanks Steve for this interesting question. I'm surprised how cute Python is, he doesn't mind square brackets in the right answer ... 🙂

  • Reply To: Minimalistic SELECT

    Ah..., my apologies, it is obvious that in the expression '1.77 + 0. test' is the second dot also an decimal point. I had to be blind. I have overlooked...

  • Reply To: Minimalistic SELECT

    Hi Carlo, yes you're right. The first dot in constant numeric number in the selected

    expression is the decimal point. The second dot is a "virtual AS".

    SELECT 1.77+0....
  • Reply To: Minimalistic SELECT

    Thanks Thomas for a funny but interesting question, and thanks

    Oddvar for the reminder sp_describe_first_result_set.

    This clearly shows that if the expression before the dot is data type numeric,

    then the expression after...

  • Reply To: Dropping the External Table

    Thanks for an interesting question. I did not find in the docs a link to DROP EXTERNAL TABLE for Azure SQL Database. This page DROP EXTERNAL...

    • This reply was modified 5 years, 3 months ago by  George Vobr.
    • This reply was modified 5 years, 3 months ago by  George Vobr.
    • This reply was modified 5 years, 3 months ago by  George Vobr.
  • Reply To: Cleaning the Data frame

    The syntax description in the reference states that header is a logical value indicating whether the file contains the names of the variables as its first line. If missing, the...

  • Reply To: SQL Update Statement Awareness

    USE TestDB;
    GO

    --Weird question, pleas try this in Results to Text mode:

    CREATE TABLE dbo.my_table (my_field INT);
    INSERT dbo.my_table VALUES (1),(2),(3),(30),(40),(50);
    GO
    -- Syntax error in CASE clause!
    UPDATE dbo.my_table SET my_field =...

    • This reply was modified 5 years, 3 months ago by  George Vobr.
  • Reply To: The Datatimeoffset Value

    Datetimeoffset defines a date that is combined with a time of a day that has time zone awareness and is based on a 24-hour clock.

    If you would like to represent...

  • Reply To: ISNULL vs COALESCE

    Bravo Thom, it's a great question with an excellent explanation!

  • Reply To: Strange Sorting

    Thanks for this interesting T-SQL question Steve.

  • RE: Stuffing Compressed Rows

    Thanks for this interesting question Steve. I had to check for a while whether sysdiagrams table is a system table or not.😉

  • RE: T-SQL correlated queries

    Stewart "Arturius" Campbell - Wednesday, March 13, 2019 11:44 PM

    Nice question, thanks Evgeny.

    Tony, this is not a bug, but a side...

  • RE: The Funny Stored Procedure Name

    Great question about a little known but not completely safe feature of SQL Server – numbered stored procedures.
    Notice the use of semi-colon here. The semi-colon is not used...

  • RE: SQL Server Containers

    Yes, IMHO, the answer "SQL Server 2017+" is not quite right.

  • RE: SQL Server Containers

    Steve Jones - SSC Editor - Saturday, January 5, 2019 11:16 AM

    Comments posted to this topic are about the item SQL...

Viewing 15 posts - 46 through 60 (of 319 total)