Can someone se whats wrong here!
DECLARE @.TEMP table (ID int, FILENAME nvarchar(255), GOgo nvarchar(5))
INSERT INTO @.TEMP
select * , SUBSTRING(FILENAME, len(FILENAME) -1, 1) as GOgo
from mytable
group by GOgo
order by ID desc
Msg 207, Level 16, State 1, Procedure GET_STAT, Line 102
Invalid column name 'prov'.
For me, very very strange!
Does the SELECT work when you're not doing an insert? Does "SELECT * FROM mytable" work?
|||Always mention the column name explicitly to avoid these kind of confusion
INSERT INTO @.TEMP (ID,Filename,GoGo)
select Col1,col2,SUBSTRING(FILENAME, len(FILENAME) -1, 1) as GOgo
from mytable
group by GOgo
order by ID desc
Check this code
Madhu
No comments:
Post a Comment