Hi all.
I have the following query in a php/mysql application:
insert tags ( `tag_name`, `tag_entry_id` )
values ( 'cory', 3 ),
( 'bob', 3 ),
( 'tim', 3 )
where the table has a unique index on tag_name and tag_entry_id (combined). i was hoping this would insert three records...