About 2,710,000 results
Open links in new tab
    • Ad related to: SQL for Data Analytics
    • Site icon
      coursera.org
      https://www.coursera.org › learn-sql › data-science
      About our ads

      SQL For Data Science | Earn A Career Certificate

      Learn More With Coursera ...
      Data Wrangling, Analysis And AB Testing With SQL. No previous experience required. Learn SQL Basics for Data Science Specialization | Coursera

      Find A Course · 275+ University Partners · Learn the Latest Skills

      40% off Coursera Plus · Valid Nov 6 - Dec 1
  1. How do I perform an IF...THEN in an SQL SELECT?

    Sep 15, 2008 · 2059 The CASE statement is the closest to IF in SQL and is supported on all versions of SQL Server.

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

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

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

    SELECT TOP 1000 * FROM master.sys.procedures as procs left join master.sys.parameters as params on procs.object_id = params.object_id This seems totally correct, but I keep getting …

  5. SQL JOIN: what is the difference between WHERE clause and ON …

    SQL INNER JOIN The SQL JOIN clause allows you to associate rows that belong to different tables. For instance, a CROSS JOIN will create a Cartesian Product containing all possible …

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

  7. sql server - Database stuck in "Restoring" state - Stack Overflow

    Ran into a similar issue while restoring the database using SQL server management studio and it got stuck into restoring mode. After several hours of issue tracking, the following query worked …

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

  9. Finding and deleting duplicate values in a SQL table

    Jul 28, 2019 · It uses a common table expression (CTE) and a partition window (I think these features are in SQL 2008 and later). This example finds all students with duplicate name and …

  10. sql - A table name as a variable - Stack Overflow

    For static queries, like the one in your question, table names and column names need to be static. For dynamic queries, you should generate the full SQL dynamically, and use sp_executesql to …