tuple
Tuples are used to store multiple items in a single variable.
Examples
SELECT tuple('1', 2, 3, '4');
+-----------------------+
| tuple('1', 2, 3, '4') |
+-----------------------+
| ('1', 2, 3, '4') |
+-----------------------+
Tuples are used to store multiple items in a single variable.
SELECT tuple('1', 2, 3, '4');
+-----------------------+
| tuple('1', 2, 3, '4') |
+-----------------------+
| ('1', 2, 3, '4') |
+-----------------------+