You can specifically list the fields that you want to see.
Quote:
SELECT name, address, phone FROM TABLE adressbook;
|
Assuming that 'addressbook' has these fields (among others), only these ones will be listed. You can also limit the number of results:
Quote:
SELECT name, address, phone FROM TABLE addressbook WHERE id>'999' LIMIT 10;
|
Get yourself some good SQL documentation or tutorial.
Arch Linux