Postgres 1th class database and table creation

Source: Internet
Author: User

--View current Server databaseSELECTDatname fromPg_database--view the created user tableSELECT *  fromPg_stat_user_tables--Create a databaseCREATE DATABASE"Fxsz_lt" withOWNER=postgresencoding='UTF8'tablespace=Pg_default--lc_collate= ' Chinese (Simplified) _people ' s Republic of china.936 '--lc_ctype= ' Chinese (Simplified) _people ' s Republic of china.936 'CONNECTION LIMIT=-1;--Deleting a databaseDROP DATABASElitao_test--CREATE TABLE SpaceCREATEtablespace "Litao_test" OWNER postgreslocation'/var/lib/pgsql/9.3/data'--Querying table SpacesSELECTSpcname fromPg_tablespace--where to query the tablespaceSELECTSpcname,pg_tablespace_location (OID) fromPg_tablespace--Delete Table SpaceDROPtablespace Products--Create a tableCREATE TABLEUserInfo (UserIDvarchar( -) not NULL, UserNamevarchar( -) not NULL, Userpwdvarchar( -) )--Inserting DataINSERT  intoUserInfoVALUES('fxsz06046','Litao','SYSTEMG');--Querying table DataSELECT *  fromUserInfo

Postgres 1th class database and table creation

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.