select * from my_table where my_field like 'A%';
"Jorch" <jorch(at)saunalahti(dot)fi> wrote in message
news:3A648758(dot)71C69867(at)saunalahti(dot)fi(dot)(dot)(dot)
> 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"
>
>