Re: Query question

Michael J Davis <mdavis@sevainc.com>

From: "Michael J Davis" <mdavis@sevainc.com>
To: pgsql-general@postgresql.org
Date: 2001-01-17T21:44:27Z
Lists: pgsql-general
select * from my_table where my_field like 'A%';

"Jorch" <jorch@saunalahti.fi> wrote in message
news:3A648758.71C69867@saunalahti.fi...
> How can I make query
>
> SELECT * FROM my_table WHERE my_field = 'A*';
>
> Meaning that I want to get all rows from my_table where my_field value
> begins with alphabet "A"
>
>