S
Student Databaser
I want to populate the Trainer_ID field with 00+First three letters of field
first name +first three letters of field last name where Trainer_ID is Null
I think this would be similar to
UPDATE [Master Trainers] SET [Master Trainers].TRAINER_ID ="00"+((left(First
Name),3))+((left(Last Name),3))
WHERE ((([Master Trainers].TRAINER_ID) Is Null));
suggestions please
Thanks
first name +first three letters of field last name where Trainer_ID is Null
I think this would be similar to
UPDATE [Master Trainers] SET [Master Trainers].TRAINER_ID ="00"+((left(First
Name),3))+((left(Last Name),3))
WHERE ((([Master Trainers].TRAINER_ID) Is Null));
suggestions please
