How to truncate a string to a certain number of characters?
Use SUBSTRING function. For example, if you want to get only the first 10 characters of column C1 from table T1, use this:
SELECT SUBSTRING(c1 FROM 1 FOR 10) FROM t1;
Do you find this FAQ incorrect or incomplete? Please e-mail us what
needs to be changed. To ensure quality, each change is checked by our editors (and often tested on live Firebird
databases), before it enters the main FAQ database. If you desire so, the
changes will be credited to your name. To learn more, visit our add content page.
All contents are copyright © 2007-2025 FirebirdFAQ.org unless otherwise stated in the text.