About 5,590,000 results
Open links in new tab
  1. sql - Insert into ... values ( SELECT ... FROM ... ) - Stack Overflow

    Aug 25, 2008 · 1896 I am trying to INSERT INTO a table using the input from another table. Although this is entirely feasible for many database engines, I always seem to struggle to …

  2. Inserting multiple rows in a single SQL query? - Stack Overflow

    Jan 17, 2009 · 2797 In SQL Server 2008 you can insert multiple rows using a single INSERT statement.

  3. sql - How to insert a value that contains an apostrophe (single …

    Dec 16, 2009 · The apostrophe, or single quote, is a special character in SQL that specifies the beginning and end of string data. This means that to use it as part of your literal string data …

  4. How do I escape a single quote in SQL Server? - Stack Overflow

    Oct 19, 2009 · I am trying to insert some text data into a table in SQL Server 9. The text includes a single quote '. How do I escape that? I tried using two single quotes, but it threw me some …

  5. sql - Using the WITH clause in an INSERT statement - Stack Overflow

    The problem here is with your INSERT INTO statement, which is looking for VALUES or SELECT syntax. INSERT INTO statement can be used in 2 ways - by providing VALUES explicitly or by …

  6. SQL Server INSERT INTO with WHERE clause - Stack Overflow

    I'm trying to insert some mock payment info into a dev database with this query: INSERT INTO Payments(Amount) VALUES(12.33) WHERE Payments.CustomerID = '145300'; How can …

  7. SQL Server Insert if not exists - Stack Overflow

    A single insert statement is always a single transaction. It's not as if the SQL Server evaluates the subquery first and then at some later point, and without holding a lock, goes on to do the insert.

  8. sql - How to insert a string which contains an "&" - Stack Overflow

    Sep 30, 2008 · 53 How can I write an insert statement which includes the & character? For example, if I wanted to insert "J&J Construction" into a column in the database. I'm not sure if …

  9. How to Ignore "Duplicate Key" error in T-SQL (SQL Server)

    @Jonathan Leffler: IGNORE_DUP_KEY won't cause duplicate data. It causes SQL Server to ignore the duplicate key: not inserting it into the database.

  10. Postgres: INSERT if does not exist already - Stack Overflow

    Nov 1, 2010 · One approach would be to create a non-constrained (no unique indexes) table to insert all your data into and do a select distinct from that to do your insert into your hundred table.