About 2,700,000 results
Open links in new tab
  1. What does <> (angle brackets) mean in MS-SQL Server?

    Nov 8, 2013 · What does <> (angle brackets) mean in MS-SQL Server? Asked 11 years, 11 months ago Modified 4 years, 2 months ago Viewed 81k times

  2. SQL asterisk(*) all possible uses - Stack Overflow

    Apr 13, 2020 · It is used in sql-server for xml. In the code below, aliasing the subquery as ' [*]' means that COLUMN_NAME and DATA_TYPE xml nodes output on the same level as …

  3. sql - Incorrect syntax near '' - Stack Overflow

    I'm trying to run the following fairly simple query in SQL Server Management Studio: SELECT TOP 1000 * FROM master.sys.procedures as procs left join master.sys.parameters as params …

  4. SQL: IF clause within WHERE clause - Stack Overflow

    Sep 18, 2008 · Is it possible to use an IF clause within a WHERE clause in MS SQL? Example: WHERE IF IsNumeric(@OrderNumber) = 1 OrderNumber = @OrderNumber ELSE …

  5. SQL Server CASE .. WHEN .. IN statement - Stack Overflow

    May 18, 2011 · On SQL server 2005 I am trying to query this select statement SELECT AlarmEventTransactionTableTable.TxnID, CASE AlarmEventTransactions.DeviceID WHEN …

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

  7. SQL Server® 2016, 2017, 2019 and 2022 Express full download

    Jan 25, 2017 · All previous version of SQL Server Express were available in both web and full downloads. But I cannot find full download of SQL Server® 2016 Express. Does it exist? …

  8. What is the use of the square brackets [] in sql statements?

    The Microsoft book for SQL course says "You should use two-part names to refer to tables in SQL Server databases, such as Sales.Customer" so they don't ask to surround namespace with …

  9. sql server 2008 - SQL query with NOT LIKE IN - Stack Overflow

    May 22, 2023 · SQL query with NOT LIKE IN Asked 13 years, 8 months ago Modified 2 years, 5 months ago Viewed 568k times

  10. sql - Must declare the scalar variable - Stack Overflow

    @RowFrom int @RowTo int are both Global Input Params for the Stored Procedure, and since I am compiling the SQL query inside the Stored Procedure with T-SQL then using …