Am 16.05.2013 11:57, schrieb Roger:
> Booking_development=> SELECT "registers".* FROM "registers" ORDER BY lname 
> shows nothing because it's a database
> not a table, but I do not understand how to get at it's tables'

SQL basics

select field1,field2 from database.table;
select * from database.table;

or
use database;
select field1,field2 from table;
select * from table;

no idea what "SELECT "registers".*" is supposed to do
it makes pretty no sense to select all from any table in one query

Attachment: signature.asc
Description: OpenPGP digital signature

-- 
users mailing list
users@lists.fedoraproject.org
To unsubscribe or change subscription options:
https://admin.fedoraproject.org/mailman/listinfo/users
Guidelines: http://fedoraproject.org/wiki/Mailing_list_guidelines
Have a question? Ask away: http://ask.fedoraproject.org

Reply via email to