Andy Elvey wrote:
Hi everyone -

I'm a "first-timer" here, and was wondering - does SQLite support crosstab queries? Many thanks in advance - bye for now!
- Andy



If you mean something like:
select a.*, b.* from a,b where a.column=1 or b.another=5;

or

select a.*, b.* from a left join b on (a.id=b.a_id);

so it support of course :)

Brona

Reply via email to