MySQL - JOIN with table on partial string match
问题 Trying to LEFT JOIN a table with partial string match. I've tried changing the wildcard in the LIKE condition, but it still only searches for the full string. Any suggestions? I've got a list of product abbreviations stored in a table. Would be easier to manage this list with partial matching versus having to spell out every product. Thanks in advance! CREATE TABLE `order` ( order_id INT (11) NOT NULL, shipping_firstname VARCHAR (128) NOT NULL, shipping_lastname VARCHAR (128) NOT NULL );