About 2,570,000 results
Open links in new tab
  1. 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? …

  2. What does the colon sign ":" do in a SQL query?

    May 9, 2017 · What does ":" stand for in a query? A bind variable. Bind variables allow a single SQL statement (whether a query or DML) to be re-used many times, which helps security (by …

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

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

  5. sql server - What is the use of the square brackets [] in sql ...

    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 …

  6. sql - How do I split a delimited string so I can access individual ...

    Nov 2, 2015 · Using SQL Server, how do I split a string so I can access item x? Take a string "Hello John Smith". How can I split the string by space and access the item at index 1 which …

  7. sql - Can I use multiple "with"? - Stack Overflow

    Nov 24, 2015 · sql t-sql sql-server-2008 edited Dec 13, 2019 at 22:35 Esteban Verbel 748 3 20 40

  8. SQL WITH clause example - Stack Overflow

    Sep 23, 2012 · 353 The SQL WITH clause was introduced by Oracle in the Oracle 9i release 2 database. The SQL WITH clause allows you to give a sub-query block a name (a process also …

  9. SQL Server 2019 Express installation failed because it could not …

    Aug 13, 2020 · The path supplied by the installer seemed to indicate the package was once installed from automatic software deployment, which had probably failed. Installing the linked …

  10. sql - How to use "and" and "or" in a "Where" clause - Stack Overflow

    I have a query that is gathering information based on a set of conditions. Basically I want to know if a location has paid out more than $50 for the day OR the comment section has the word …