Wat je wel kunt doen is PostgreSQL's substring() gebruiken methode. Een van de twee onderstaande commando's zal werken:
SELECT substring(longcolumn for 10) FROM mytable;
SELECT substring(longcolumn from 1 for 10) FROM mytable;
Wat je wel kunt doen is PostgreSQL's substring() gebruiken methode. Een van de twee onderstaande commando's zal werken:
SELECT substring(longcolumn for 10) FROM mytable;
SELECT substring(longcolumn from 1 for 10) FROM mytable;