S
S
Sergey Karbivnichy2020-03-13 01:21:27
SQLite
Sergey Karbivnichy, 2020-03-13 01:21:27

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

1 answer(s)
S
Stalker_RED, 2020-03-13
@hottabxp

update myTable
    set title = lower(title)

By the way, this secret link was in the first line for "sqlite lower case":
https://www.w3resource.com/sqlite/core-functions-l...

Didn't find what you were looking for?

Ask your question

Ask a Question

731 491 924 answers to any question