Use ' schema_name ' in PostgreSQL

Source: Internet
Author: User
Tags postgresql

http://timmurphy.org/tag/mysql/

http://timmurphy.org/2009/11/17/use-schema_name-in-postgresql/

====================================

For those moving from MySQL to PostgreSQL, there is a few differences which you'll need to get used to. One of these differences is the use command, used to select the schema to select tables, views, etc. from.

PostgreSQL does not has the use command. Instead, can use:

SET search_path TO [schema_name]

For example, if we had a schema MySchema in which we is querying the person table, instead SELECT * FROM mySchema.person of, W  E can simply type and use for all SET search_path TO mySchema SELECT * FROM person subsequent queries. MySchema would remain the default schema until the next SET command is issued, or the connection is closed.

Use ' schema_name ' in PostgreSQL

Related Article

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.