Hopefully either my subject was cryptic enough to elicit a "whiskey tango foxtrot?!" and a click or you understand where I was going. Either way, here is my challenge.I have two tables. Table1 has all the data with an ID field, Table2 has the same ID field populated, and a few blank columns.I want to pull the related columns from Table1 into Table2 based on the 1 to 1 relationship of the ID field.what I had put together but I keep getting an error on is below:Insert into Table2 (Table2.Category, Table2.Type, Table2.Item, Table2.Symptom, Table2.Abstract)select Table1.Category, Table1.Type, Table1.Item, Table1.Symptom, Table1.Abstract from Table1where cast(cast(Table1.[Request ID] as varchar(15)) as int) = Table2.Request_ID
I keep getting an error that the last field Request_ID is an invalid column name.I've worked in Oracle before, and MSSQL but its been about 4-5 years, so there is plenty of rust. This environment is MSSQL 2000.Thanks in advance,J