Hi !
My table contains phone numbers.
I want to show all the phone numbers but each number once only:
but i get all the phones including few of each number.
How do i write that distict to show me each number once only ?
Phone number is not a primary key.
Thanks !
My table contains phone numbers.
I want to show all the phone numbers but each number once only:
Code:
select distinct phone
from
my phones
How do i write that distict to show me each number once only ?
Phone number is not a primary key.
Thanks !