Reputation: 63
SQL Server error says Invalid object name what should I do now.Database name is Sample and table name is tblEmployee contains some column and id column is identity column
Upvotes: 0
Views: 746
Reputation: 1123
Add:
use Sample;
Before your insert statement
Upvotes: 1