Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- Server [localhost]:
- Database [postgres]:
- Port [5432]:
- Username [postgres]:
- Password for user postgres:
- psql (16.2)
- WARNING: Console code page (437) differs from Windows code page (1252)
- 8-bit characters might not work correctly. See psql reference
- page "Notes for Windows users" for details.
- Type "help" for help.
- postgres=# \l
- List of databases
- Name | Owner | Encoding | Locale Provider | Collate | Ctype | ICU Locale | ICU Rules | Access privileges
- -----------+----------+----------+-----------------+--------------------+--------------------+------------+-----------+-----------------------
- bcco | postgres | UTF8 | libc | English_India.1252 | English_India.1252 | | |
- lastdn | postgres | UTF8 | libc | English_India.1252 | English_India.1252 | | |
- postgres | postgres | UTF8 | libc | English_India.1252 | English_India.1252 | | |
- template0 | postgres | UTF8 | libc | English_India.1252 | English_India.1252 | | | =c/postgres +
- | | | | | | | | postgres=CTc/postgres
- template1 | postgres | UTF8 | libc | English_India.1252 | English_India.1252 | | | =c/postgres +
- | | | | | | | | postgres=CTc/postgres
- test | postgres | UTF8 | libc | English_India.1252 | English_India.1252 | | |
- town | postgres | UTF8 | libc | English_India.1252 | English_India.1252 | | |
- town2 | postgres | UTF8 | libc | English_India.1252 | English_India.1252 | | |
- (8 rows)
- postgres=# \d lastdn
- Did not find any relation named "lastdn".
- postgres=# \c lastdn
- You are now connected to database "lastdn" as user "postgres".
- lastdn=# SELECT * FROM person;
- ERROR: relation "person" does not exist
- LINE 1: SELECT * FROM person;
- ^
- lastdn=# SELECT * FROM pepople;
- ERROR: relation "pepople" does not exist
- LINE 1: SELECT * FROM pepople;
- ^
- lastdn=# \d
- List of relations
- Schema | Name | Type | Owner
- --------+----------------+----------+----------
- public | new | table | postgres
- public | new2 | table | postgres
- public | new2_carid_seq | sequence | postgres
- public | new_id_seq | sequence | postgres
- (4 rows)
- lastdn=# SELECT * FROM new;
- id | name | gender | age | email | carid
- ----+------+--------+-----+-------+-------
- (0 rows)
- lastdn=# \l
- List of databases
- Name | Owner | Encoding | Locale Provider | Collate | Ctype | ICU Locale | ICU Rules | Access privileges
- -----------+----------+----------+-----------------+--------------------+--------------------+------------+-----------+-----------------------
- bcco | postgres | UTF8 | libc | English_India.1252 | English_India.1252 | | |
- lastdn | postgres | UTF8 | libc | English_India.1252 | English_India.1252 | | |
- postgres | postgres | UTF8 | libc | English_India.1252 | English_India.1252 | | |
- template0 | postgres | UTF8 | libc | English_India.1252 | English_India.1252 | | | =c/postgres +
- | | | | | | | | postgres=CTc/postgres
- template1 | postgres | UTF8 | libc | English_India.1252 | English_India.1252 | | | =c/postgres +
- | | | | | | | | postgres=CTc/postgres
- test | postgres | UTF8 | libc | English_India.1252 | English_India.1252 | | |
- town | postgres | UTF8 | libc | English_India.1252 | English_India.1252 | | |
- town2 | postgres | UTF8 | libc | English_India.1252 | English_India.1252 | | |
- (8 rows)
- lastdn=# \c town2
- You are now connected to database "town2" as user "postgres".
- town2=# \d
- List of relations
- Schema | Name | Type | Owner
- --------+---------------+----------+----------
- public | car | table | postgres
- public | car_id_seq | sequence | postgres
- public | peron2 | table | postgres
- public | person | table | postgres
- public | person_id_seq | sequence | postgres
- (5 rows)
- town2=# SELECT * FROM person;
- id | firstname | lastname | gender | email | dob | country | carid | hascar
- ----+-----------+-----------+--------+----------------------------+------------+---------+-------+--------
- 1 | Fernanda | Beardon | Female | fernandab@is.gd | 1953-10-28 | India | 2 | t
- 2 | Omar | Colmore | Male | | 1921-04-03 | Finland | | f
- (3 rows)
- town2=# SELECT country, COUNT(*) FROM person GROUP BY country;
- country | count
- ---------+-------
- Finland | 1
- India | 2
- (2 rows)
- town2=# SELECT * FROM car;
- id | make | model | price
- ----+------------+----------+----------
- 1 | Land Rover | Sterling | 87665.38
- 2 | GMC | Acadia | 17662.69
- 3 | BMW | A5 | 18000.00
- (3 rows)
- town2=# SELECT * FROM person JOIN car ON person.carid= id;
- ERROR: column reference "id" is ambiguous
- LINE 1: SELECT * FROM person JOIN car ON person.carid= id;
- ^
- town2=# SELECT * FROM person JOIN car ON person.carid= car.id;
- id | firstname | lastname | gender | email | dob | country | carid | hascar | id | make | model | price
- ----+-----------+-----------+--------+----------------------------+------------+---------+-------+--------+----+------------+----------+----------
- 3 | Adriana | Matuschek | Female | [email protected] | 1953-10-18 | India | 1 | t | 1 | Land Rover | Sterling | 87665.38
- 1 | Fernanda | Beardon | Female | fernandab@is.gd | 1953-10-28 | India | 2 | t | 2 | GMC | Acadia | 17662.69
- (2 rows)
- town2=# SELECT * FROM new;
- ERROR: relation "new" does not exist
- -- More --
- ^
- town2=# SELECT * FROM car;
- id | make | model | price
- ----+------------+----------+----------
- 1 | Land Rover | Sterling | 87665.38
- 2 | GMC | Acadia | 17662.69
- 3 | BMW | A5 | 18000.00
- (3 rows)
- town2=# ALTER TABLE
- town2-# ADD COLUMN year INT;
- ERROR: syntax error at or near "COLUMN"
- LINE 2: ADD COLUMN year INT;
- ^
- town2=# ALTER TABLE
- town2-# ;
- ERROR: syntax error at or near ";"
- LINE 2: ;
- ^
- town2=# ALTER TABLE car
- town2-# ADD COLUMN year INT;
- ALTER TABLE
- town2=# SELECT * FROM car;
- id | make | model | price | year
- ----+------------+----------+----------+------
- 1 | Land Rover | Sterling | 87665.38 |
- 2 | GMC | Acadia | 17662.69 |
- 3 | BMW | A5 | 18000.00 |
- (3 rows)
- town2=# SELECT SUM(price) FROM car;
- sum
- -----------
- 123328.07
- (1 row)
- town2=# \l
- List of databases
- Name | Owner | Encoding | Locale Provider | Collate | Ctype | ICU Locale | ICU Rules | Access privileges
- -----------+----------+----------+-----------------+--------------------+--------------------+------------+-----------+-----------------------
- bcco | postgres | UTF8 | libc | English_India.1252 | English_India.1252 | | |
- lastdn | postgres | UTF8 | libc | English_India.1252 | English_India.1252 | | |
- postgres | postgres | UTF8 | libc | English_India.1252 | English_India.1252 | | |
- template0 | postgres | UTF8 | libc | English_India.1252 | English_India.1252 | | | =c/postgres +
- | | | | | | | | postgres=CTc/postgres
- template1 | postgres | UTF8 | libc | English_India.1252 | English_India.1252 | | | =c/postgres +
- | | | | | | | | postgres=CTc/postgres
- test | postgres | UTF8 | libc | English_India.1252 | English_India.1252 | | |
- town | postgres | UTF8 | libc | English_India.1252 | English_India.1252 | | |
- town2 | postgres | UTF8 | libc | English_India.1252 | English_India.1252 | | |
- (8 rows)
- town2=# \c town
- You are now connected to database "town" as user "postgres".
- town=# \d
- List of relations
- Schema | Name | Type | Owner
- --------+---------------+----------+----------
- public | car | table | postgres
- public | car_id_seq | sequence | postgres
- public | people | table | postgres
- public | people_id_seq | sequence | postgres
- (4 rows)
- town=# SELECT * FROM people;
- id | firstname | lastname | email | gender | dob | country
- ------+---------------+----------------+------------------------------------+--------+------------+------------------------
- 1 | Loren | McCuis | | Female | 1996-06-15 | Sweden
- 2 | Valerie | Tallboy | | Female | 1996-06-03 | China
- 6 | Fitz | Keble | | Male | 1998-04-25 | Mexico
- 7 | Bogart | Casoni | | Male | 1998-05-11 | Bosnia and Herzegovina
- 8 | Gabriel | Grandisson | | Female | 1996-10-06 | Zambia
- 12 | Alysa | Banfield | | Female | 1998-11-23 | Palestinian Territory
- 18 | Elianore | Stubbington | | Female | 1997-04-26 | Indonesia
- 20 | Gilbertina | Fransson | | Female | 1996-11-19 | French Polynesia
- 29 | Shoshana | Mokes | [email protected] | Female | 1996-04-27 | China
- 30 | Arnuad | Bicknell | | Male | 1997-05-14 | China
- 31 | Morton | Wilstead | [email protected] | Male | 1997-06-29 | Sweden
- 32 | Neils | Groundwater | [email protected] | Male | 1996-05-30 | Russia
- 33 | Igor | Abbatt | [email protected] | Male | 1996-03-31 | Chile
- 34 | Chickie | Hadaway | | Female | 1998-01-19 | Egypt
- 35 | Eduino | Fenty | | Male | 1997-12-13 | Greece
- 36 | Torre | Benson | [email protected] | Male | 1997-02-03 | Cameroon
- 37 | Kelley | Turfin | [email protected] | Female | 1997-05-24 | Sudan
- 38 | Rosalind | Garioch | [email protected] | Female | 1997-11-21 | France
- 39 | Marlow | Streatfeild | | Male | 1996-06-26 | Czech Republic
- 40 | Ernestus | Baddoe | [email protected] | Male | 1997-01-12 | China
- 44 | Falkner | Orth | | Male | 1997-06-12 | China
- town=# SELECT * FROM people WHERE name LIKE 'Do%';
- ERROR: column "name" does not exist
- LINE 1: SELECT * FROM people WHERE name LIKE 'Do%';
- ^
- town=# SELECT * FROM people WHERE firstname LIKE 'Do%';
- id | firstname | lastname | email | gender | dob | country
- -----+-----------+----------------+----------------------------------+--------+------------+----------------
- 123 | Dorice | Renny | | Female | 1997-02-23 | Indonesia
- 737 | Dominga | Larkcum | | Female | 1998-03-28 | Indonesia
- (14 rows)
- town=# ALTER TABLE people
- town-# ADD COLUMN age INT NOT NULL;
- ERROR: column "age" of relation "people" contains null values
- town=# ALTER TABLE people
- town-# ADD COLUMN age INT;
- ALTER TABLE
- town=# SELECT * FROM people;
- id | firstname | lastname | email | gender | dob | country | age
- ------+---------------+----------------+------------------------------------+--------+------------+------------------------+-----
- 1 | Loren | McCuis | | Female | 1996-06-15 | Sweden |
- 2 | Valerie | Tallboy | | Female | 1996-06-03 | China |
- 6 | Fitz | Keble | | Male | 1998-04-25 | Mexico |
- 7 | Bogart | Casoni | | Male | 1998-05-11 | Bosnia and Herzegovina |
- 8 | Gabriel | Grandisson | | Female | 1996-10-06 | Zambia |
- 12 | Alysa | Banfield | | Female | 1998-11-23 | Palestinian Territory |
- 18 | Elianore | Stubbington | | Female | 1997-04-26 | Indonesia |
- 20 | Gilbertina | Fransson | | Female | 1996-11-19 | French Polynesia |
- 29 | Shoshana | Mokes | [email protected] | Female | 1996-04-27 | China |
- 30 | Arnuad | Bicknell | | Male | 1997-05-14 | China |
- 31 | Morton | Wilstead | [email protected] | Male | 1997-06-29 | Sweden |
- 32 | Neils | Groundwater | [email protected] | Male | 1996-05-30 | Russia |
- 33 | Igor | Abbatt | [email protected] | Male | 1996-03-31 | Chile |
- 34 | Chickie | Hadaway | | Female | 1998-01-19 | Egypt |
- 35 | Eduino | Fenty | | Male | 1997-12-13 | Greece |
- 36 | Torre | Benson | [email protected] | Male | 1997-02-03 | Cameroon |
- 37 | Kelley | Turfin | [email protected] | Female | 1997-05-24 | Sudan |
- 38 | Rosalind | Garioch | [email protected] | Female | 1997-11-21 | France |
- 39 | Marlow | Streatfeild | | Male | 1996-06-26 | Czech Republic |
- 40 | Ernestus | Baddoe | [email protected] | Male | 1997-01-12 | China |
- 44 | Falkner | Orth | | Male | 1997-06-12 | China |
- town=# UPDATE person SET age = 20;
- ERROR: relation "person" does not exist
- LINE 1: UPDATE person SET age = 20;
- ^
- town=# UPDATE people SET age = 20;
- UPDATE 1000
- town=# SELECT * FROM people;
- id | firstname | lastname | email | gender | dob | country | age
- ------+---------------+----------------+------------------------------------+--------+------------+------------------------+-----
- 93 | Daisi | Medland | | Female | 1998-03-31 | China | 20
- 1 | Loren | McCuis | | Female | 1996-06-15 | Sweden | 20
- 2 | Valerie | Tallboy | | Female | 1996-06-03 | China | 20
- 6 | Fitz | Keble | | Male | 1998-04-25 | Mexico | 20
- 7 | Bogart | Casoni | | Male | 1998-05-11 | Bosnia and Herzegovina | 20
- 8 | Gabriel | Grandisson | | Female | 1996-10-06 | Zambia | 20
- 12 | Alysa | Banfield | | Female | 1998-11-23 | Palestinian Territory | 20
- 18 | Elianore | Stubbington | | Female | 1997-04-26 | Indonesia | 20
- 20 | Gilbertina | Fransson | | Female | 1996-11-19 | French Polynesia | 20
- 29 | Shoshana | Mokes | [email protected] | Female | 1996-04-27 | China | 20
- 30 | Arnuad | Bicknell | | Male | 1997-05-14 | China | 20
- 31 | Morton | Wilstead | [email protected] | Male | 1997-06-29 | Sweden | 20
- 32 | Neils | Groundwater | [email protected] | Male | 1996-05-30 | Russia | 20
- 33 | Igor | Abbatt | [email protected] | Male | 1996-03-31 | Chile | 20
- 34 | Chickie | Hadaway | | Female | 1998-01-19 | Egypt | 20
- 35 | Eduino | Fenty | | Male | 1997-12-13 | Greece | 20
- 36 | Torre | Benson | [email protected] | Male | 1997-02-03 | Cameroon | 20
- 37 | Kelley | Turfin | [email protected] | Female | 1997-05-24 | Sudan | 20
- 38 | Rosalind | Garioch | [email protected] | Female | 1997-11-21 | France | 20
- 39 | Marlow | Streatfeild | | Male | 1996-06-26 | Czech Republic | 20
- 40 | Ernestus | Baddoe | [email protected] | Male | 1997-01-12 | China | 20
- 44 | Falkner | Orth | | Male | 1997-06-12 | China | 20
- town=#
- town=# DELETE FROM people WHERE gender = 'Female';
- DELETE 519
- town=# SELECT * FROM people;
- id | firstname | lastname | email | gender | dob | country | age
- -----+--------------+----------------+------------------------------------+--------+------------+------------------------+-----
- 6 | Fitz | Keble | | Male | 1998-04-25 | Mexico | 20
- 7 | Bogart | Casoni | | Male | 1998-05-11 | Bosnia and Herzegovina | 20
- 30 | Arnuad | Bicknell | | Male | 1997-05-14 | China | 20
- 35 | Eduino | Fenty | | Male | 1997-12-13 | Greece | 20
- 39 | Marlow | Streatfeild | | Male | 1996-06-26 | Czech Republic | 20
- 42 | Meryl | Dahlgren | [email protected] | Male | 1996-11-19 | Macedonia | 20
- 44 | Falkner | Orth | | Male | 1997-06-12 | China | 20
- 46 | Wake | Fairlem | [email protected] | Male | 1996-02-20 | Armenia | 20
- 47 | Ave | Van Hesteren | | Male | 1997-02-09 | Russia | 20
- 50 | Davide | Sambals | | Male | 1998-01-04 | China | 20
- 51 | Filip | Skinner | | Male | 1996-11-13 | Argentina | 20
- 52 | Guss | Greser | [email protected] | Male | 1996-11-08 | Indonesia | 20
- 55 | Richart | Apedaile | | Male | 1997-03-22 | Argentina | 20
- 58 | Gauthier | Roselli | | Male | 1998-09-21 | France | 20
- 61 | Hal | Thairs | [email protected] | Male | 1997-02-24 | Portugal | 20
- 63 | Erhard | Shearn | [email protected] | Male | 1996-04-01 | Thailand | 20
- 64 | Basil | Dominy | [email protected] | Male | 1998-07-16 | Russia | 20
- 65 | Aristotle | Cody | [email protected] | Male | 1997-04-22 | Venezuela | 20
- 67 | Grenville | Irnis | [email protected] | Male | 1999-01-11 | China | 20
- 70 | Barbabas | Pykett | [email protected] | Male | 1998-09-19 | France | 20
- 72 | Maximilianus | Zollner | [email protected] | Male | 1997-01-01 | China | 20
- 73 | Beck | Cowp | | Male | 1998-11-15 | Indonesia | 20
- 74 | Bondy | Bridgeman | [email protected] | Male | 1998-08-03 | Peru | 20
- 75 | Rodrique | Gaffey | [email protected] | Male | 1998-02-09 | Hungary | 20
- 79 | Rinaldo | Basketfield | [email protected] | Male | 1997-07-29 | China | 20
- 81 | Conway | Jereatt | | Male | 1998-03-04 | Greece | 20
- 82 | Trefor | Eisold | [email protected] | Male | 1997-08-11 | Russia | 20
- 84 | Ogden | Caillou | [email protected] | Male | 1999-01-02 | Bangladesh | 20
- 85 | Neddie | Dienes | [email protected] | Male | 1998-09-08 | China | 20
- 87 | Donalt | Heinssen | [email protected] | Male | 1999-01-01 | South Africa | 20
- 89 | Lazar | Brakespear | [email protected] | Male | 1996-03-12 | Portugal | 20
- -- More --
Add Comment
Please, Sign In to add comment