Answer the question
In order to leave comments, you need to log in
SQLite - how to lowercase all rows of a column?
There is a sqlite3 base. It has a column called title. Each entry has lines in which the letters are in different cases. Is it possible to somehow convert all characters of this column to lowercase using an SQL query.
Answer the question
In order to leave comments, you need to log in
update myTable
set title = lower(title)
Didn't find what you were looking for?
Ask your questionAsk a Question
731 491 924 answers to any question