gtjr92
Programmer
- May 26, 2004
- 96
I am trying to instert data from one table into another. The source table does not have a uniqueIDentifier but the destination table does. How can I get the uniquid field to autopopulate when I do this insert?
I keep getting Cannot insert the value NULL into column 'memberid', ; column does not allow nulls. INSERT fails.
The statement has been terminated.
Code:
insert into Members(address,phone,firstname,lastname,Email,City,State,zip,no_Permission,Others) Select address,phone,firstname,lastname,Email,City,State,zip,no_Permission,Others from DIR;
The statement has been terminated.