LENGTHUTF8()

    1. > drop table if exists t1;
    2. > create table t1(a varchar(255),b varchar(255));
    3. > select lengthUTF8(a), lengthUTF8(b) from t1;
    4. +---------------+---------------+
    5. | 5 | 2 |

    MatrixOne目前只支持在查询表的时候使用函数,不支持单独使用函数。