I have this combo box which gets its data from:-
SELECT customer.custom er_id, (nz(customer.fi rst_name,'')+'
'+nz(customer.m iddle_name,'')+ ' '+nz(customer.l ast_name,'')) AS name
FROM customer;
Question is how can this be modified so that it is sorted
alphabetically by last_name
Thanks
Yvonne
SELECT customer.custom er_id, (nz(customer.fi rst_name,'')+'
'+nz(customer.m iddle_name,'')+ ' '+nz(customer.l ast_name,'')) AS name
FROM customer;
Question is how can this be modified so that it is sorted
alphabetically by last_name
Thanks
Yvonne
Comment