To keep this SQL Tables for the tagging system:
create table tag (id serial primary)
The user's Boolean expression query in SQL is " Tag 1 and tag2 ":
SELECT items. * Inner joins items from items tagged_items as i1 (items.id = i1.item_id) on interiors (i1.tag_id = t1.id) included as inline tag t1 included as i2 on tagged_items (items.id = I2.item_id) Tagged as JOIN (I2.tag_id = t2.id) on the inside where T1name = 'tag1' and 't2.name =' tag2 ';
How do you translate other questions with Boolean expressions like " Tag 1 or Tag2 and Tag 3 " ... or more complex questions like " Tag1 and (Tag2 or Tag3) and not Tag4 or Tag 5 "From SQL?
No comments:
Post a Comment