hi guys
i am writing the following statement to insert records from one table to another
Insert into SubscriberMaster (SubCode, SubName, SubAdd1)
Select OldSubsCode, OldSubsName, OldSubsAddress from
OldSubscriberMaster
I am not able to execute this statment becuase my SubscriberMaster Table consists of many columns out of which few are not NULLABLE, So the Sql statment fails saying can not insert NULL values in column xyz...
How do i insert into specified columns only??? please help...
I am using MSDE 2000. Windows 98SE.
Thanks
Gazal
i am writing the following statement to insert records from one table to another
Insert into SubscriberMaster (SubCode, SubName, SubAdd1)
Select OldSubsCode, OldSubsName, OldSubsAddress from
OldSubscriberMaster
I am not able to execute this statment becuase my SubscriberMaster Table consists of many columns out of which few are not NULLABLE, So the Sql statment fails saying can not insert NULL values in column xyz...
How do i insert into specified columns only??? please help...
I am using MSDE 2000. Windows 98SE.
Thanks
Gazal