On 07/16/2014 10:34 AM, ML mail wrote:
> Thanks for the trick with the double quotes to escape reserved keywords.

It's probably worth reading the PostgreSQL documentation for this sort
of thing:

http://www.postgresql.org/docs/9.3/static/sql-syntax-lexical.html#SQL-SYNTAX-IDENTIFIERS


> Actually I wanted to display the content of the user table to find out in 
> which table are the subscribers of any mailing list recorded. Do you have any 
> idea? 

You already know how to find the content of the table:

  select * from "tablename"

If you're asking about inspecting the table structure from the psql
command line, you probably want \d "tablename" or one of its variants.
If you're not familiar with the psql command line, you probably want to
know about the two main help commands: \? and \h.

For further questions about postgresql, you should ask on a
psql-specific mailing list.  The current list is for discussing mailman,
so we are increasingly off-topic.

You can find a good set of postgresql mailing lists here:

 http://www.postgresql.org/list/

Regards,

        --dkg

Attachment: signature.asc
Description: OpenPGP digital signature

_______________________________________________
Mailman-Developers mailing list
Mailman-Developers@python.org
https://mail.python.org/mailman/listinfo/mailman-developers
Mailman FAQ: http://wiki.list.org/x/AgA3
Searchable Archives: 
http://www.mail-archive.com/mailman-developers%40python.org/
Unsubscribe: 
https://mail.python.org/mailman/options/mailman-developers/archive%40jab.org

Security Policy: http://wiki.list.org/x/QIA9

Reply via email to