I have a `select` looking like this: ``` ...
# sql
d
I have a
select
looking like this:
Copy code
.select('uid, created_at, text, topic, corrected, option, progress, characters')
Sometimes, the column
text
can be several thousands words long. Since I want to store the result of this query in my vue store, i don't want to have huge
text
values. Is it possible to adjust the query that the value of
text
is only e.g. 45 characters long?