if the ordering of the column is the same, you can do thisinsert into ActiveDataselect * from ScheduleDataMasterwhere SchID = 5107
But it is not advisable to do this. As you might have make changes to the table (new column etc) and the column ordering might change. So it is always better to specify the column name.insert into ActiveData(col1, col2, col3, ...)select col1, col2, col3, ...from ScheduleDataMasterwhere SchID = 5107
KH