For example,
create table tblvarchar
(
lngvarchar character varying(500)
)
And Sample Row is
insert into tblvarchar (lngvarchar) values ('110010000001111101010011110000001101011000001')
- How to find out the
character(this case (0or1)) inlngvarcharfield using the position ofcharacter? - for example, the
characterin 15th position oflngvarcharis1
On PostgreSQL 9.2.4