Agustin Magne
02/19/2022, 12:11 PMquery.orderBy(column)
This column is a string column, and I want the orderBy
statement NOT to be case sensitive. How can I achieve that? (without changing the column altogether to .lowercase()
Bogdan
02/19/2022, 3:05 PMMyTable.selectAll()
.orderBy(MyTable.name.lowerCase())
Agustin Magne
02/19/2022, 3:25 PM