Tagged Questions
0
votes
1answer
116 views
Mysql insert array from another table and fill the rest with default values
here's my question:
I have a table TRUST(id INT, trustlevel INT) which contains records (1, 5) and (2, 3). I also have an array containing ids (1, 2, 3, 4, 5).
What I want to achieve is to insert ...
1
vote
2answers
1k views
SQL Insert to Temp Table Without Specifying Values?
I have a stored procedure that currently uses one CTE. This one works like so:
WITH MY_CTE AS
(
// Logic here uses SELECT * from a single table.
)
SELECT *
INTO #Tasks
FROM MY_CTE;
I now have a ...
0
votes
2answers
103 views
Modify MySQL INSERT statement to omit the insertion of certain rows
I'm trying to expand a little on a statement that I received help with last week. As you can see, I'm setting up a temporary table and inserting rows of student data from a recently administered test ...
1
vote
6answers
467 views
Populating a table with a large amount of data from a temporary table - MySQL
Ok I have a temporary MySQL table with 135,000 rows, from this temporary table I want to populate several other tables.
First of all this is the structure of the temporary table
CREATE TEMPORARY ...
0
votes
3answers
1k views
SQL Server: how to insert to temporary table?
I have one Temporary Table
CREATE TABLE #TEMP (TEMP_ID INT IDENTITY(1,1))
And I would like to insert records to that table, How can I?I do as follow:
INSERT INTO #TEMP DEFAULT VALUES
But ...