i have a situation where i need to present a list of people in a table, and avoid duplicate entries.
my current steps are as follows:
//BEGIN
create temporary table tmpnames (name varchar(50));
insert into tmpnames (name) select ar1 from schedules where (ar1 is not null and ar1 <>'');
insert...
This site uses cookies to help personalise content, tailor your experience and to keep you logged in if you register.
By continuing to use this site, you are consenting to our use of cookies.