title to slug name with (-)      

sql ====
     
UPDATE listings
SET listing_slug = LOWER(
    REPLACE(
        REPLACE(
            REPLACE(title, ' ', '-'),
        '&', 'and'),
    '--', '-')
);


=====================================================================