Re: Query question
Ligia M. Pimentel <lmpc@nettaxi.com>
From: "Ligia M. Pimentel" <lmpc@nettaxi.com>
To: pgsql-general@postgresql.org
Date: 2001-01-17T17:45:05Z
Lists: pgsql-general
use Select * from my_table where my_field LIKE 'A%' the % stands for *. "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" > >