Need help comparing titles from 2 databases, looking for a match on the model number in the title, lots of different models
eg closest match
500D 500-D (i.e. 500)
S930 S 930 (i.e. 930)
This query works only if the title is the exact same
Is there a way to match parts of the title?
Thanks in advance
Regards
Dave
eg closest match
500D 500-D (i.e. 500)
S930 S 930 (i.e. 930)
This query works only if the title is the exact same
Code:
Select
cameras.title,
cameras.sku,
cameras.price
where
cameras.title like concat('%',cameras_digital.title,'%');
Is there a way to match parts of the title?
Thanks in advance
Regards
Dave