About 167,000 results
Open links in new tab
  1. What is the difference between SQL, PL-SQL and T-SQL?

    Jun 25, 2009 · Another significant difference between T-SQL and SQL is the changes done to the DELETE and UPDATE commands that are already available in SQL. With T-SQL, the …

  2. What are the differences between T-SQL, SQL Server and SQL

    Sep 19, 2013 · T-SQL is the proprietary form of SQL used by Microsoft SQL Server. It includes special functions like cast, convert, date (), etc. that are not part of the ANSI standard.

  3. sql - What is the difference between MSSQL and TSQL? - Stack …

    Mar 26, 2013 · MSSQL and T-SQL are often thrown around as interchangeable synonyms on the web. I know that T-SQL is a flavor of SQL used in many Microsoft products. Is MS-SQL …

  4. Should I use != or <> for not equal in T-SQL? - Stack Overflow

    I have seen SQL that uses both != and <> for not equal. What is the preferred syntax and why? I like !=, because <> reminds me of Visual Basic.

  5. sql - Is MySQL also TSQL? - Stack Overflow

    Jul 2, 2017 · The scripting language for Sybase and SQL Server is called T-SQL. Strictly speaking, SQL Server is the database and T-SQL is the language, but the two are often used …

  6. SQL Server tables: what is the difference between @, # and

    Feb 8, 2010 · 5 I would focus on the differences between #table and @table. ##table is a global temporary table and for the record in over 10 years of using SQL Server I have yet to come …

  7. DateTime2 vs DateTime in SQL Server - Stack Overflow

    Aug 26, 2009 · Which one: datetime datetime2 is the recommended way to store date and time in SQL Server 2008+? I'm aware of differences in precision (and storage space probably), but …

  8. sql server - What is the difference between varchar and nvarchar ...

    I like incomudro's point, it's what led me to digging around about the difference between varchar & nvarchar in the first place. Our Java app against a SQL Server db uses myBatis, which seems …

  9. Difference between numeric, float and decimal in SQL Server

    Jun 29, 2009 · What are the differences between numeric, float and decimal datatypes and which should be used in which situations? For any kind of financial transaction (e.g. for salary field), …

  10. MS SQL CONCAT vs "+" query difference (with Doctrine 2)

    Dec 6, 2019 · I am using the Doctrine 2 interface to access MS SQL database. I found the problem that is pretty interesting on both sides: Doctrine 2 and the MS SQL. Doctrine 2 for …