🦔
Size: a a a
🦔
🦔
S
S
S
🦔
🇧
🇧
А
🦔
S
🦔
S
🇧
🇧
🇧
MariaDB [q]> select * from Post where post_id IN(select post_id from PostTags a inner join Tag b ON a.tag_id = b.tag_id where b.name LIKE 'Petya' OR b.name LIKE 'Vasya' );
+---------+-------------+
| post_id | name |
+---------+-------------+
| 2 | vtoroi post |
+---------+-------------+
1 row in set (0.003 sec)
MariaDB [q]>
🇧
🇧
А
🦔
MariaDB [q]> select * from Post where post_id IN(select post_id from PostTags a inner join Tag b ON a.tag_id = b.tag_id where b.name LIKE 'Petya' OR b.name LIKE 'Vasya' );
+---------+-------------+
| post_id | name |
+---------+-------------+
| 2 | vtoroi post |
+---------+-------------+
1 row in set (0.003 sec)
MariaDB [q]>