Column name or number of supplied values does not match table definition

They don’t have the same structure… I can guarantee they are different

I know you’ve already created it… There is already an object named ‘tbltable1’ in the database

What you may want is this (which also fixes your other issue):

Drop table tblTable1

select * into tblTable1 from tblTable1_Link

Leave a Comment