Hello!

Let's assume the database setup

create table company (id serial primary key, ...);
create table queue (id serial primary key, company_id int not null references company(id), ...); create table client(id serial primary key, queue_id int not null references queue(id), ...);

And assume that client should be created given company id, so queue must be selected from table

What condition should I write? As far as I understand, condition supports only constants.

Alex.


_______________________________________________
HTML-FormFu mailing list
HTML-FormFu@lists.scsys.co.uk
http://lists.scsys.co.uk/cgi-bin/mailman/listinfo/html-formfu

Reply via email to