About 514,000 results
Open links in new tab
  1. What are the differences between T-SQL, SQL Server and SQL

    Sep 19, 2013 · A further note - the SQL extensions, like T-SQL, are generally considered full-fledged programming languages, complete with looping, if/then, case statements, etc. SQL …

  2. 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 …

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

    Yes; Microsoft themselves recommend using <> over != specifically for ANSI compliance, e.g. in Microsoft Press training kit for 70-461 exam, "Querying Microsoft SQL Server", they say "As …

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

    Feb 8, 2010 · In SQL Server, what is the difference between a @ table, a # table and a ## table?

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

    Mar 26, 2013 · 31 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 …

  6. 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 …

  7. T-SQL - Aliasing using "=" versus "as" - Stack Overflow

    T-SQL - Aliasing using "=" versus "as" [closed] Asked 16 years, 3 months ago Modified 3 years, 3 months ago Viewed 19k times

  8. sql server - Difference between #temptable and ##TempTable?

    Jan 9, 2014 · 14 Local temporary tables are visible only to their creators during the same connection to an instance of SQL Server as when the tables were first created or referenced. …

  9. In SQL Server, when should you use GO and when should you use …

    Sep 13, 2010 · 12 You should use a semi-colon to terminate every SQL statement. This is defined in the SQL Standards, Sure, more often than not SQL Server allows you to omit the statement …

  10. t sql - LEFT JOIN vs. LEFT OUTER JOIN in SQL Server - Stack Overflow

    Jan 2, 2009 · sql-server t-sql left-join outer-join edited Aug 23, 2016 at 15:39 Dev 404 1,616 6 40 68