Please start any new threads on our new
site at https://forums.sqlteam.com. We've got lots of great SQL Server
experts to answer whatever question you can come up with.
Author |
Topic |
SergioM
Posting Yak Master
170 Posts |
Posted - 2014-05-21 : 18:29:54
|
I have a working query which does what I want, but it's painfully slow because it runs the same subquery several times. Instead, I wanted to insert the results into a temporary table & then reference that table. The problem is that I keep getting errors.Basically, my UPCs are either in a field called UPC or a field called Alias in a different table. I do two queries, join them, find the ones which appear more than once & output that to a resulting table. I have tried this, but the resulting error message is below. Is it that my syntax is incorrect or is it just not possible to insert to a virtual table from a subquery?Declare @tmpdb Table( UPC nvarchar(100) )SELECT UPCINTO @tmpdbFROM ( SELECT ppa.ProductID AS 'SKU' ,LTRIM(RTRIM([UPC])) AS 'UPC' FROM [SC].[dbo].[bvc_Product_Properties_Amazon] ppa WHERE UPC IS NOT NULL AND LEN(UPC)>0 UNION ALL SELECT pa.ProductID AS 'SKU' ,LTRIM(RTRIM([Alias])) AS 'UPC' FROM [SC].[dbo].[bvc_Product_Alias] pa ) tGROUP BY (UPC)HAVING COUNT(UPC)>1 quote: Msg 102, Level 15, State 1, Line 6Incorrect syntax near '@tmpdb'.Msg 102, Level 15, State 1, Line 19Incorrect syntax near 't'.
-SergioI use Microsoft SQL 2008 |
|
tkizer
Almighty SQL Goddess
38200 Posts |
Posted - 2014-05-21 : 18:39:21
|
Specify INSERT INTO, not SELECT INTO.Tara KizerSQL Server MVP since 2007http://weblogs.sqlteam.com/tarad/ |
|
|
|
|
|
|
|