About 1,020,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. sql server - INSERT INTO vs SELECT INTO - Stack Overflow

    The simple difference between select Into and Insert Into is: --> Select Into don't need existing table. If you want to copy table A data, you just type Select * INTO [tablename] from A.

  3. SQL Server SELECT into existing table - Stack Overflow

    For Existing Table - INSERT INTO SELECT This method is used when the table is already created in the database earlier and the data is to be inserted into this table from another table.

  4. sql - Is it possible to use the SELECT INTO clause with UNION [ALL ...

    In SQL Server this inserts 100 records, from the Customers table into tmpFerdeen :- SELECT top(100)* INTO tmpFerdeen FROM Customers Is it possible to do a SELECT INTO across a …

  5. sql - Insert Data Into Temp Table with Query - Stack Overflow

    I have an existing query that outputs current data, and I would like to insert it into a Temp table, but am having some issues doing so. Would anybody have some insight on how to do this? …

  6. sql - INSERT vs INSERT INTO - Stack Overflow

    May 27, 2017 · I have been working with T-SQL in SQL Server for some time now and somehow whenever I have to insert data into a table I tend to use syntax: INSERT INTO myTable …

  7. SELECT INTO a table variable in T-SQL - Stack Overflow

    Oct 1, 2010 · Got a complex SELECT query, from which I would like to insert all rows into a table variable, but T-SQL doesn't allow it. Along the same lines, you cannot use a table variable with …

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

  9. sql - SELECT INTO USING UNION QUERY - Stack Overflow

    I want to create a new table in SQL Server with the following query. I am unable to understand why this query doesn't work. Query1: Works SELECT * FROM TABLE1 UNION SELECT * …

  10. How to create a table from select query result in SQL Server 2008

    May 22, 2013 · The SELECT INTO statement creates a new table and populates it with the result set of the SELECT statement. SELECT INTO can be used to combine data from several …