Posted inAll / Sql Concat fields in mysql by SuryaApril 18, 2011December 4, 20230 By using CONCAT function in mysql, we can concat fields or string. SELECT CONCAT('field1', '-', 'field2', '-', 'field3'); // Output: // 'field1-field2-field3' Surya More by Surya