Hi all,
I have a view that is joining two base tables. I can update through
the view, but insert only through the base tables. Now I am having the
problem that seems to boil down to the following: When I insert into
the base tables inside a transaction, the view doesn't seem to update.
Only after
d_and_green |
+---+
Do you have an idea how to create an AND query?
Ingo
On Apr 22, 2008, at 5:42 PM, Sebastian Mendel wrote:
Ingo Weiss schrieb:
Hi all,
I have an application where items can be tagged. There are three
tables
'items', '
Hi all,
I have an application where items can be tagged. There are three
tables 'items', 'taggings' and 'tags' joined together like this:
items inner join taggings on (items.id = taggings.item_id) inner
join tags on (tags.id = taggings.tag_id)
Now I have been struggling for some time no