Represents a CONVERT expression for type conversion (MySQL) SQL: CONVERT(value, type) or CONVERT(value USING charset)
// CONVERT(value, type)conv(value, 'INTEGER', 'UNSIGNED')// CONVERT(value USING utf8mb4)conv(value, null, 'utf8mb4') Copy
// CONVERT(value, type)conv(value, 'INTEGER', 'UNSIGNED')// CONVERT(value USING utf8mb4)conv(value, null, 'utf8mb4')
Optional
Represents a CONVERT expression for type conversion (MySQL) SQL: CONVERT(value, type) or CONVERT(value USING charset)
Example