类型可以任意组合:bit,json,datetime,int,decimal 等mysql-(ytt/3305)->values row(100,200,300),\
row('2020-03-10 12:14:15','mysql','test'), \
row(16.22,TRUE,b'1'), \
row(left(uuid(),8),'{"name":"lucy","age":"28"}',hex('dble'));
+---------------------+----------------------------+--------------------+
| column_0 | column_1 | column_2 |
+---------------------+----------------------------+--------------------+
| 100 | 200 | 0x333030 |
| 2020-03-10 12:14:15 | mysql | 0x74657374 |
| 16.22 | 1 | 0x01 |
| c86fd1a7 | {"name":"lucy","age":"28"} | 0x3634363236433635 |
+---------------------+----------------------------+--------------------+
4 rows in set (0.00 sec)