Subject | RE: [firebird-support] SQL question |
---|---|
Author | Sasha Matijasic |
Post date | 2008-05-22T07:57:40Z |
> So I need something likeSure, you can use substring(col from 1 for 12) or left(col, 12). The latter is available in 2.1.
>
> Select
> "First 12 digits",
> Count(*)
> from table
> group by 1
>
> Can this be done in SQL ?
>
Sasha