I have a table with the following records
Specialty ID Specialty 1 Optometrist 2 Children's Dentist 3 General Dentistry 4 New Dentist 5 Orthodontics
I’m trying to add one record to the table with this append query
INSERT INTO tblSpecialties ( strSpecialty ) SELECT "NA" AS Expr1 FROM tblSpecialties;
And I am getting the following 5 records
Specialty ID Specialty 6 NA 7 NA 8 NA 9 NA 10 NA
Specialty ID is a autonumber
What do i have the change to just get the one record
6 NA
Thanks, John