It seems very simple, but I can not understand.
I have a table called "item_tags", and I want to select all the elements corresponding to tags 1 and 2 (as in each element, they must have both tags).
How would this be done in mysql?
Create table:
CREATE TABLE `item_tags` ( `uid_local` int(11) NOT NULL DEFAULT '0', `uid_foreign` int(11) NOT NULL DEFAULT '0', `sorting` int(11) NOT NULL DEFAULT '0', KEY `uid_local` (`uid_local`), KEY `uid_foreign` (`uid_foreign`) ) ENGINE=MyISAM DEFAULT CHARSET=utf8;
Thanks!
sql mysql many-to-many
Andrei Serdeliuc
source share