Ad
  • Default User Avatar

    Hi, Amna. CONCAT_WS() is just like CONCAT() but you get to set a separator beforehand -- lemme explain. If I want to print out:
    'I-like-cats' I can do it as follows:
    SELECT
    CONCAT_WS ('-', 'I', 'like', 'cats')
    FROM users;