prorm API Reference
    Preparing search index...

    Interface ConvExpression

    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')
    interface ConvExpression {
        __type: "conv";
        value: any;
        from?: string | null;
        to: string;
    }
    Index
    __type: "conv"
    value: any
    from?: string | null
    to: string