Assuming I have a table with a bytea
column called data
on a table called t
, how can I:
- Write a query that returns all rows which have a specific prefix on their
data
column. - Index the query.
I am using Postgresql 9.5.
Assuming I have a table with a bytea
column called data
on a table called t
, how can I:
data
column.I am using Postgresql 9.5.