I use PostgreSQL, and I have a column in the table that contains very long text. I want to select this column in the query, but limit its display length.
Sort of:
select longcolumn (only 10 chars) from mytable;
How can I do it?
user2064791
source share