iif

fun <T : Any> iif(    condition: ColumnDeclaring<Boolean>,     then: ColumnDeclaring<T>,     otherwise: ColumnDeclaring<T>): FunctionExpression<T>(source)
inline fun <T : Any> iif(    condition: ColumnDeclaring<Boolean>,     then: T,     otherwise: T,     sqlType: SqlType<T> = SqlType.of() ?: error("Cannot detect the param's SqlType, please specify manually.")): FunctionExpression<T>(source)

SQLite iif function, translated to iif(condition, then, otherwise).