ListonFermi

Week 16 | SQL

Mar 18th, 2024 (edited)
62
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PostgreSQL 35.41 KB | Source Code | 0 0
  1. Server [localhost]:
  2. Database [postgres]:
  3. Port [5432]:
  4. Username [postgres]:
  5. Password for user postgres:
  6. psql (16.2)
  7. WARNING: Console code page (437) differs from Windows code page (1252)
  8.          8-bit characters might not work correctly. See psql reference
  9.          page "Notes for Windows users" for details.
  10. Type "help" for help.
  11.  
  12. postgres=# \l
  13.                                                               List of databases
  14.    Name    |  Owner   | Encoding | Locale Provider |      Collate       |       Ctype        | ICU Locale | ICU Rules |   Access privileges
  15. -----------+----------+----------+-----------------+--------------------+--------------------+------------+-----------+-----------------------
  16.  bcco      | postgres | UTF8     | libc            | English_India.1252 | English_India.1252 |            |           |
  17.  lastdn    | postgres | UTF8     | libc            | English_India.1252 | English_India.1252 |            |           |
  18.  postgres  | postgres | UTF8     | libc            | English_India.1252 | English_India.1252 |            |           |
  19.  template0 | postgres | UTF8     | libc            | English_India.1252 | English_India.1252 |            |           | =c/postgres          +
  20.            |          |          |                 |                    |                    |            |           | postgres=CTc/postgres
  21.  template1 | postgres | UTF8     | libc            | English_India.1252 | English_India.1252 |            |           | =c/postgres          +
  22.            |          |          |                 |                    |                    |            |           | postgres=CTc/postgres
  23.  test      | postgres | UTF8     | libc            | English_India.1252 | English_India.1252 |            |           |
  24.  town      | postgres | UTF8     | libc            | English_India.1252 | English_India.1252 |            |           |
  25.  town2     | postgres | UTF8     | libc            | English_India.1252 | English_India.1252 |            |           |
  26. (8 rows)
  27.  
  28.  
  29. postgres=# \d lastdn
  30. Did not find any relation named "lastdn".
  31. postgres=# \c lastdn
  32. You are now connected to database "lastdn" as user "postgres".
  33. lastdn=# SELECT * FROM person;
  34. ERROR:  relation "person" does not exist
  35. LINE 1: SELECT * FROM person;
  36.                       ^
  37. lastdn=# SELECT * FROM pepople;
  38. ERROR:  relation "pepople" does not exist
  39. LINE 1: SELECT * FROM pepople;
  40.                       ^
  41. lastdn=# \d
  42.                List of relations
  43.  Schema |      Name      |   Type   |  Owner
  44. --------+----------------+----------+----------
  45.  public | new            | table    | postgres
  46.  public | new2           | table    | postgres
  47.  public | new2_carid_seq | sequence | postgres
  48.  public | new_id_seq     | sequence | postgres
  49. (4 rows)
  50.  
  51.  
  52. lastdn=# SELECT * FROM new;
  53.  id | name | gender | age | email | carid
  54. ----+------+--------+-----+-------+-------
  55. (0 rows)
  56.  
  57.  
  58. lastdn=# \l
  59.                                                               List of databases
  60.    Name    |  Owner   | Encoding | Locale Provider |      Collate       |       Ctype        | ICU Locale | ICU Rules |   Access privileges
  61. -----------+----------+----------+-----------------+--------------------+--------------------+------------+-----------+-----------------------
  62.  bcco      | postgres | UTF8     | libc            | English_India.1252 | English_India.1252 |            |           |
  63.  lastdn    | postgres | UTF8     | libc            | English_India.1252 | English_India.1252 |            |           |
  64.  postgres  | postgres | UTF8     | libc            | English_India.1252 | English_India.1252 |            |           |
  65.  template0 | postgres | UTF8     | libc            | English_India.1252 | English_India.1252 |            |           | =c/postgres          +
  66.            |          |          |                 |                    |                    |            |           | postgres=CTc/postgres
  67.  template1 | postgres | UTF8     | libc            | English_India.1252 | English_India.1252 |            |           | =c/postgres          +
  68.            |          |          |                 |                    |                    |            |           | postgres=CTc/postgres
  69.  test      | postgres | UTF8     | libc            | English_India.1252 | English_India.1252 |            |           |
  70.  town      | postgres | UTF8     | libc            | English_India.1252 | English_India.1252 |            |           |
  71.  town2     | postgres | UTF8     | libc            | English_India.1252 | English_India.1252 |            |           |
  72. (8 rows)
  73.  
  74.  
  75. lastdn=# \c town2
  76. You are now connected to database "town2" as user "postgres".
  77. town2=# \d
  78.               List of relations
  79.  Schema |     Name      |   Type   |  Owner
  80. --------+---------------+----------+----------
  81.  public | car           | table    | postgres
  82.  public | car_id_seq    | sequence | postgres
  83.  public | peron2        | table    | postgres
  84.  public | person        | table    | postgres
  85.  public | person_id_seq | sequence | postgres
  86. (5 rows)
  87.  
  88.  
  89. town2=# SELECT * FROM person;
  90.  id | firstname | lastname  | gender |           email            |    dob     | country | carid | hascar
  91. ----+-----------+-----------+--------+----------------------------+------------+---------+-------+--------
  92.   1 | Fernanda  | Beardon   | Female | fernandab@is.gd            | 1953-10-28 | India   |     2 | t
  93.   3 | Adriana   | Matuschek | Female | [email protected] | 1953-10-18 | India   |     1 | t
  94.   2 | Omar      | Colmore   | Male   |                            | 1921-04-03 | Finland |       | f
  95. (3 rows)
  96.  
  97.  
  98. town2=# SELECT country, COUNT(*) FROM person GROUP BY country;
  99.  country | count
  100. ---------+-------
  101.  Finland |     1
  102.  India   |     2
  103. (2 rows)
  104.  
  105.  
  106. town2=# SELECT * FROM car;
  107.  id |    make    |  model   |  price
  108. ----+------------+----------+----------
  109.   1 | Land Rover | Sterling | 87665.38
  110.   2 | GMC        | Acadia   | 17662.69
  111.   3 | BMW        | A5       | 18000.00
  112. (3 rows)
  113.  
  114.  
  115. town2=# SELECT * FROM person JOIN car ON person.carid= id;
  116. ERROR:  column reference "id" is ambiguous
  117. LINE 1: SELECT * FROM person JOIN car ON person.carid= id;
  118.                                                        ^
  119. town2=# SELECT * FROM person JOIN car ON person.carid= car.id;
  120.  id | firstname | lastname  | gender |           email            |    dob     | country | carid | hascar | id |    make    |  model   |  price
  121. ----+-----------+-----------+--------+----------------------------+------------+---------+-------+--------+----+------------+----------+----------
  122.   3 | Adriana   | Matuschek | Female | [email protected] | 1953-10-18 | India   |     1 | t      |  1 | Land Rover | Sterling | 87665.38
  123.   1 | Fernanda  | Beardon   | Female | fernandab@is.gd            | 1953-10-28 | India   |     2 | t      |  2 | GMC        | Acadia   | 17662.69
  124. (2 rows)
  125.  
  126.  
  127. town2=# SELECT * FROM new;
  128. ERROR:  relation "new" does not exist
  129. -- More  --
  130.                       ^
  131. town2=# SELECT * FROM car;
  132.  id |    make    |  model   |  price
  133. ----+------------+----------+----------
  134.   1 | Land Rover | Sterling | 87665.38
  135.   2 | GMC        | Acadia   | 17662.69
  136.   3 | BMW        | A5       | 18000.00
  137. (3 rows)
  138.  
  139.  
  140. town2=# ALTER TABLE
  141. town2-# ADD COLUMN year INT;
  142. ERROR:  syntax error at or near "COLUMN"
  143. LINE 2: ADD COLUMN year INT;
  144.             ^
  145. town2=# ALTER TABLE
  146. town2-# ;
  147. ERROR:  syntax error at or near ";"
  148. LINE 2: ;
  149.         ^
  150. town2=# ALTER TABLE car
  151. town2-# ADD COLUMN year INT;
  152. ALTER TABLE
  153. town2=# SELECT * FROM car;
  154.  id |    make    |  model   |  price   | year
  155. ----+------------+----------+----------+------
  156.   1 | Land Rover | Sterling | 87665.38 |
  157.   2 | GMC        | Acadia   | 17662.69 |
  158.   3 | BMW        | A5       | 18000.00 |
  159. (3 rows)
  160.  
  161.  
  162. town2=# SELECT SUM(price) FROM car;
  163.     sum
  164. -----------
  165.  123328.07
  166. (1 row)
  167.  
  168.  
  169. town2=# \l
  170.                                                               List of databases
  171.    Name    |  Owner   | Encoding | Locale Provider |      Collate       |       Ctype        | ICU Locale | ICU Rules |   Access privileges
  172. -----------+----------+----------+-----------------+--------------------+--------------------+------------+-----------+-----------------------
  173.  bcco      | postgres | UTF8     | libc            | English_India.1252 | English_India.1252 |            |           |
  174.  lastdn    | postgres | UTF8     | libc            | English_India.1252 | English_India.1252 |            |           |
  175.  postgres  | postgres | UTF8     | libc            | English_India.1252 | English_India.1252 |            |           |
  176.  template0 | postgres | UTF8     | libc            | English_India.1252 | English_India.1252 |            |           | =c/postgres          +
  177.            |          |          |                 |                    |                    |            |           | postgres=CTc/postgres
  178.  template1 | postgres | UTF8     | libc            | English_India.1252 | English_India.1252 |            |           | =c/postgres          +
  179.            |          |          |                 |                    |                    |            |           | postgres=CTc/postgres
  180.  test      | postgres | UTF8     | libc            | English_India.1252 | English_India.1252 |            |           |
  181.  town      | postgres | UTF8     | libc            | English_India.1252 | English_India.1252 |            |           |
  182.  town2     | postgres | UTF8     | libc            | English_India.1252 | English_India.1252 |            |           |
  183. (8 rows)
  184.  
  185.  
  186. town2=# \c town
  187. You are now connected to database "town" as user "postgres".
  188. town=# \d
  189.               List of relations
  190.  Schema |     Name      |   Type   |  Owner
  191. --------+---------------+----------+----------
  192.  public | car           | table    | postgres
  193.  public | car_id_seq    | sequence | postgres
  194.  public | people        | table    | postgres
  195.  public | people_id_seq | sequence | postgres
  196. (4 rows)
  197.  
  198.  
  199. town=# SELECT * FROM people;
  200.   id  |   firstname   |    lastname    |               email                | gender |    dob     |        country
  201. ------+---------------+----------------+------------------------------------+--------+------------+------------------------
  202.     1 | Loren         | McCuis         |                                    | Female | 1996-06-15 | Sweden
  203.     2 | Valerie       | Tallboy        |                                    | Female | 1996-06-03 | China
  204.     3 | Alysia        | Thurlborn      | [email protected]    | Female | 1998-01-10 | China
  205.     4 | Yorke         | Baggalley      | [email protected]           | Male   | 1998-08-16 | Portugal
  206.     5 | Madella       | Legon          | [email protected]             | Female | 1997-03-28 | China
  207.     6 | Fitz          | Keble          |                                    | Male   | 1998-04-25 | Mexico
  208.     7 | Bogart        | Casoni         |                                    | Male   | 1998-05-11 | Bosnia and Herzegovina
  209.     8 | Gabriel       | Grandisson     |                                    | Female | 1996-10-06 | Zambia
  210.     9 | Ave           | Folland        | [email protected]                 | Male   | 1998-07-26 | Canada
  211.    10 | Jessie        | Gookey         | [email protected]             | Male   | 1997-08-07 | Philippines
  212.    11 | Wendy         | Emmer          | [email protected]                    | Female | 1997-08-22 | Indonesia
  213.    12 | Alysa         | Banfield       |                                    | Female | 1998-11-23 | Palestinian Territory
  214.    13 | Wye           | Fulton         | [email protected]                 | Male   | 1997-05-01 | Bolivia
  215.    14 | Ben           | Witherden      | [email protected]      | Male   | 1996-03-20 | Brazil
  216.    15 | Ariella       | Gaudin         | [email protected]                  | Female | 1997-04-25 | Philippines
  217.    16 | Agace         | Penrice        | [email protected]              | Female | 1996-01-17 | Venezuela
  218.    17 | Dominica      | Shedd          | [email protected]                | Female | 1996-03-06 | Netherlands
  219.    18 | Elianore      | Stubbington    |                                    | Female | 1997-04-26 | Indonesia
  220.    19 | Phillipe      | Paulson        | [email protected]         | Male   | 1997-07-13 | Thailand
  221.    20 | Gilbertina    | Fransson       |                                    | Female | 1996-11-19 | French Polynesia
  222.    21 | Witty         | Cunnington     | [email protected]          | Male   | 1998-08-14 | China
  223.    22 | Edith         | Detheridge     | [email protected]      | Female | 1998-12-03 | Tunisia
  224.    23 | Derby         | Hilbourne      | [email protected]       | Male   | 1996-08-18 | Russia
  225.    24 | Diane-marie   | Allgood        | [email protected]                  | Female | 1996-02-28 | Slovenia
  226.    25 | Deeyn         | Sheehan        | [email protected]                  | Female | 1997-11-04 | Senegal
  227.    26 | Kayla         | Gush           | [email protected]                 | Female | 1997-10-05 | Slovenia
  228.    27 | Pen           | Dows           | [email protected]                     | Male   | 1996-07-04 | Indonesia
  229.    28 | Veda          | O'Shields      | [email protected]        | Female | 1996-05-23 | Brazil
  230.   29 | Shoshana      | Mokes          | [email protected]                 | Female | 1996-04-27 | China
  231.   30 | Arnuad        | Bicknell       |                                    | Male   | 1997-05-14 | China
  232.   31 | Morton        | Wilstead       | [email protected]          | Male   | 1997-06-29 | Sweden
  233.   32 | Neils         | Groundwater    | [email protected]         | Male   | 1996-05-30 | Russia
  234.   33 | Igor          | Abbatt         | [email protected]                 | Male   | 1996-03-31 | Chile
  235.   34 | Chickie       | Hadaway        |                                    | Female | 1998-01-19 | Egypt
  236.   35 | Eduino        | Fenty          |                                    | Male   | 1997-12-13 | Greece
  237.   36 | Torre         | Benson         | [email protected]      | Male   | 1997-02-03 | Cameroon
  238.   37 | Kelley        | Turfin         | [email protected]            | Female | 1997-05-24 | Sudan
  239.   38 | Rosalind      | Garioch        | [email protected]          | Female | 1997-11-21 | France
  240.   39 | Marlow        | Streatfeild    |                                    | Male   | 1996-06-26 | Czech Republic
  241.   40 | Ernestus      | Baddoe         | [email protected]         | Male   | 1997-01-12 | China
  242.   41 | Zared         | O'Dare         | [email protected]           | Male   | 1998-09-28 | Portugal
  243.    42 | Meryl         | Dahlgren       | [email protected]    | Male   | 1996-11-19 | Macedonia
  244.    43 | Julianna      | Bowling        | [email protected]               | Female | 1998-02-06 | China
  245.    44 | Falkner       | Orth           |                                    | Male   | 1997-06-12 | China
  246.    45 | Tammie        | Glabach        | [email protected]                  | Female | 1996-08-23 | Brazil
  247.    46 | Wake          | Fairlem        | [email protected]           | Male   | 1996-02-20 | Armenia
  248. town=# SELECT * FROM people WHERE name LIKE 'Do%';
  249. ERROR:  column "name" does not exist
  250. LINE 1: SELECT * FROM people WHERE name LIKE 'Do%';
  251.                                    ^
  252. town=# SELECT * FROM people WHERE firstname LIKE 'Do%';
  253.  id  | firstname |    lastname    |              email               | gender |    dob     |    country
  254. -----+-----------+----------------+----------------------------------+--------+------------+----------------
  255.   17 | Dominica  | Shedd          | [email protected]              | Female | 1996-03-06 | Netherlands
  256.   87 | Donalt    | Heinssen       | [email protected]     | Male   | 1999-01-01 | South Africa
  257.  123 | Dorice    | Renny          |                                  | Female | 1997-02-23 | Indonesia
  258.  201 | Dominik   | Palfree        | [email protected]              | Male   | 1998-01-30 | Venezuela
  259.  232 | Dore      | Basterfield    | [email protected]     | Male   | 1999-01-05 | Canada
  260.  385 | Doria     | Tyler          | [email protected]         | Female | 1997-11-04 | Colombia
  261.  560 | Dorise    | Gemeau         | [email protected]               | Female | 1997-12-30 | Greece
  262.  737 | Dominga   | Larkcum        |                                  | Female | 1998-03-28 | Indonesia
  263.  773 | Dorey     | Fronek         | [email protected]           | Male   | 1997-10-17 | China
  264.  814 | Dorine    | Blanc          | [email protected]            | Female | 1998-03-18 | Czech Republic
  265.  882 | Donny     | Farra          | [email protected]              | Male   | 1997-02-07 | China
  266.  885 | Donall    | Tydd           | [email protected]                  | Male   | 1996-12-01 | Benin
  267.  900 | Dollie    | Van Schafflaer | [email protected] | Female | 1997-05-02 | Poland
  268.  906 | Dody      | La Padula      | [email protected]            | Female | 1997-05-22 | Japan
  269. (14 rows)
  270.  
  271.  
  272. town=# ALTER TABLE people
  273. town-# ADD COLUMN age INT NOT NULL;
  274. ERROR:  column "age" of relation "people" contains null values
  275. town=# ALTER TABLE people
  276. town-# ADD COLUMN age INT;
  277. ALTER TABLE
  278. town=# SELECT * FROM people;
  279.   id  |   firstname   |    lastname    |               email                | gender |    dob     |        country         | age
  280. ------+---------------+----------------+------------------------------------+--------+------------+------------------------+-----
  281.     1 | Loren         | McCuis         |                                    | Female | 1996-06-15 | Sweden                 |
  282.     2 | Valerie       | Tallboy        |                                    | Female | 1996-06-03 | China                  |
  283.     3 | Alysia        | Thurlborn      | [email protected]    | Female | 1998-01-10 | China                  |
  284.     4 | Yorke         | Baggalley      | [email protected]           | Male   | 1998-08-16 | Portugal               |
  285.     5 | Madella       | Legon          | [email protected]             | Female | 1997-03-28 | China                  |
  286.     6 | Fitz          | Keble          |                                    | Male   | 1998-04-25 | Mexico                 |
  287.     7 | Bogart        | Casoni         |                                    | Male   | 1998-05-11 | Bosnia and Herzegovina |
  288.     8 | Gabriel       | Grandisson     |                                    | Female | 1996-10-06 | Zambia                 |
  289.     9 | Ave           | Folland        | [email protected]                 | Male   | 1998-07-26 | Canada                 |
  290.    10 | Jessie        | Gookey         | [email protected]             | Male   | 1997-08-07 | Philippines            |
  291.    11 | Wendy         | Emmer          | [email protected]                    | Female | 1997-08-22 | Indonesia              |
  292.    12 | Alysa         | Banfield       |                                    | Female | 1998-11-23 | Palestinian Territory  |
  293.    13 | Wye           | Fulton         | [email protected]                 | Male   | 1997-05-01 | Bolivia                |
  294.    14 | Ben           | Witherden      | [email protected]      | Male   | 1996-03-20 | Brazil                 |
  295.    15 | Ariella       | Gaudin         | [email protected]                  | Female | 1997-04-25 | Philippines            |
  296.    16 | Agace         | Penrice        | [email protected]              | Female | 1996-01-17 | Venezuela              |
  297.    17 | Dominica      | Shedd          | [email protected]                | Female | 1996-03-06 | Netherlands            |
  298.    18 | Elianore      | Stubbington    |                                    | Female | 1997-04-26 | Indonesia              |
  299.    19 | Phillipe      | Paulson        | [email protected]         | Male   | 1997-07-13 | Thailand               |
  300.    20 | Gilbertina    | Fransson       |                                    | Female | 1996-11-19 | French Polynesia       |
  301.    21 | Witty         | Cunnington     | [email protected]          | Male   | 1998-08-14 | China                  |
  302.    22 | Edith         | Detheridge     | [email protected]      | Female | 1998-12-03 | Tunisia                |
  303.    23 | Derby         | Hilbourne      | [email protected]       | Male   | 1996-08-18 | Russia                 |
  304.    24 | Diane-marie   | Allgood        | [email protected]                  | Female | 1996-02-28 | Slovenia               |
  305.    25 | Deeyn         | Sheehan        | [email protected]                  | Female | 1997-11-04 | Senegal                |
  306.    26 | Kayla         | Gush           | [email protected]                 | Female | 1997-10-05 | Slovenia               |
  307.    27 | Pen           | Dows           | [email protected]                     | Male   | 1996-07-04 | Indonesia              |
  308.    28 | Veda          | O'Shields      | [email protected]        | Female | 1996-05-23 | Brazil                 |
  309.   29 | Shoshana      | Mokes          | [email protected]                 | Female | 1996-04-27 | China                  |
  310.   30 | Arnuad        | Bicknell       |                                    | Male   | 1997-05-14 | China                  |
  311.   31 | Morton        | Wilstead       | [email protected]          | Male   | 1997-06-29 | Sweden                 |
  312.   32 | Neils         | Groundwater    | [email protected]         | Male   | 1996-05-30 | Russia                 |
  313.   33 | Igor          | Abbatt         | [email protected]                 | Male   | 1996-03-31 | Chile                  |
  314.   34 | Chickie       | Hadaway        |                                    | Female | 1998-01-19 | Egypt                  |
  315.   35 | Eduino        | Fenty          |                                    | Male   | 1997-12-13 | Greece                 |
  316.   36 | Torre         | Benson         | [email protected]      | Male   | 1997-02-03 | Cameroon               |
  317.   37 | Kelley        | Turfin         | [email protected]            | Female | 1997-05-24 | Sudan                  |
  318.   38 | Rosalind      | Garioch        | [email protected]          | Female | 1997-11-21 | France                 |
  319.   39 | Marlow        | Streatfeild    |                                    | Male   | 1996-06-26 | Czech Republic         |
  320.   40 | Ernestus      | Baddoe         | [email protected]         | Male   | 1997-01-12 | China                  |
  321.   41 | Zared         | O'Dare         | [email protected]           | Male   | 1998-09-28 | Portugal               |
  322.    42 | Meryl         | Dahlgren       | [email protected]    | Male   | 1996-11-19 | Macedonia              |
  323.    43 | Julianna      | Bowling        | [email protected]               | Female | 1998-02-06 | China                  |
  324.    44 | Falkner       | Orth           |                                    | Male   | 1997-06-12 | China                  |
  325.    45 | Tammie        | Glabach        | [email protected]                  | Female | 1996-08-23 | Brazil                 |
  326.    46 | Wake          | Fairlem        | [email protected]           | Male   | 1996-02-20 | Armenia                |
  327. town=# UPDATE person SET age = 20;
  328. ERROR:  relation "person" does not exist
  329. LINE 1: UPDATE person SET age = 20;
  330.                ^
  331. town=# UPDATE people SET age = 20;
  332. UPDATE 1000
  333. town=# SELECT * FROM people;
  334.   id  |   firstname   |    lastname    |               email                | gender |    dob     |        country         | age
  335. ------+---------------+----------------+------------------------------------+--------+------------+------------------------+-----
  336.    93 | Daisi         | Medland        |                                    | Female | 1998-03-31 | China                  |  20
  337.     1 | Loren         | McCuis         |                                    | Female | 1996-06-15 | Sweden                 |  20
  338.     2 | Valerie       | Tallboy        |                                    | Female | 1996-06-03 | China                  |  20
  339.     3 | Alysia        | Thurlborn      | [email protected]    | Female | 1998-01-10 | China                  |  20
  340.     4 | Yorke         | Baggalley      | [email protected]           | Male   | 1998-08-16 | Portugal               |  20
  341.     5 | Madella       | Legon          | [email protected]             | Female | 1997-03-28 | China                  |  20
  342.     6 | Fitz          | Keble          |                                    | Male   | 1998-04-25 | Mexico                 |  20
  343.     7 | Bogart        | Casoni         |                                    | Male   | 1998-05-11 | Bosnia and Herzegovina |  20
  344.     8 | Gabriel       | Grandisson     |                                    | Female | 1996-10-06 | Zambia                 |  20
  345.     9 | Ave           | Folland        | [email protected]                 | Male   | 1998-07-26 | Canada                 |  20
  346.    10 | Jessie        | Gookey         | [email protected]             | Male   | 1997-08-07 | Philippines            |  20
  347.    11 | Wendy         | Emmer          | [email protected]                    | Female | 1997-08-22 | Indonesia              |  20
  348.    12 | Alysa         | Banfield       |                                    | Female | 1998-11-23 | Palestinian Territory  |  20
  349.    13 | Wye           | Fulton         | [email protected]                 | Male   | 1997-05-01 | Bolivia                |  20
  350.    14 | Ben           | Witherden      | [email protected]      | Male   | 1996-03-20 | Brazil                 |  20
  351.    15 | Ariella       | Gaudin         | [email protected]                  | Female | 1997-04-25 | Philippines            |  20
  352.    16 | Agace         | Penrice        | [email protected]              | Female | 1996-01-17 | Venezuela              |  20
  353.    17 | Dominica      | Shedd          | [email protected]                | Female | 1996-03-06 | Netherlands            |  20
  354.    18 | Elianore      | Stubbington    |                                    | Female | 1997-04-26 | Indonesia              |  20
  355.    19 | Phillipe      | Paulson        | [email protected]         | Male   | 1997-07-13 | Thailand               |  20
  356.    20 | Gilbertina    | Fransson       |                                    | Female | 1996-11-19 | French Polynesia       |  20
  357.    21 | Witty         | Cunnington     | [email protected]          | Male   | 1998-08-14 | China                  |  20
  358.    22 | Edith         | Detheridge     | [email protected]      | Female | 1998-12-03 | Tunisia                |  20
  359.    23 | Derby         | Hilbourne      | [email protected]       | Male   | 1996-08-18 | Russia                 |  20
  360.    24 | Diane-marie   | Allgood        | [email protected]                  | Female | 1996-02-28 | Slovenia               |  20
  361.    25 | Deeyn         | Sheehan        | [email protected]                  | Female | 1997-11-04 | Senegal                |  20
  362.    26 | Kayla         | Gush           | [email protected]                 | Female | 1997-10-05 | Slovenia               |  20
  363.    27 | Pen           | Dows           | [email protected]                     | Male   | 1996-07-04 | Indonesia              |  20
  364.    28 | Veda          | O'Shields      | [email protected]        | Female | 1996-05-23 | Brazil                 |  20
  365.   29 | Shoshana      | Mokes          | [email protected]                 | Female | 1996-04-27 | China                  |  20
  366.   30 | Arnuad        | Bicknell       |                                    | Male   | 1997-05-14 | China                  |  20
  367.   31 | Morton        | Wilstead       | [email protected]          | Male   | 1997-06-29 | Sweden                 |  20
  368.   32 | Neils         | Groundwater    | [email protected]         | Male   | 1996-05-30 | Russia                 |  20
  369.   33 | Igor          | Abbatt         | [email protected]                 | Male   | 1996-03-31 | Chile                  |  20
  370.   34 | Chickie       | Hadaway        |                                    | Female | 1998-01-19 | Egypt                  |  20
  371.   35 | Eduino        | Fenty          |                                    | Male   | 1997-12-13 | Greece                 |  20
  372.   36 | Torre         | Benson         | [email protected]      | Male   | 1997-02-03 | Cameroon               |  20
  373.   37 | Kelley        | Turfin         | [email protected]            | Female | 1997-05-24 | Sudan                  |  20
  374.   38 | Rosalind      | Garioch        | [email protected]          | Female | 1997-11-21 | France                 |  20
  375.   39 | Marlow        | Streatfeild    |                                    | Male   | 1996-06-26 | Czech Republic         |  20
  376.   40 | Ernestus      | Baddoe         | [email protected]         | Male   | 1997-01-12 | China                  |  20
  377.   41 | Zared         | O'Dare         | [email protected]           | Male   | 1998-09-28 | Portugal               |  20
  378.    42 | Meryl         | Dahlgren       | [email protected]    | Male   | 1996-11-19 | Macedonia              |  20
  379.    43 | Julianna      | Bowling        | [email protected]               | Female | 1998-02-06 | China                  |  20
  380.    44 | Falkner       | Orth           |                                    | Male   | 1997-06-12 | China                  |  20
  381.    45 | Tammie        | Glabach        | [email protected]                  | Female | 1996-08-23 | Brazil                 |  20
  382. town=#
  383. town=# DELETE FROM people WHERE gender = 'Female';
  384. DELETE 519
  385. town=# SELECT * FROM people;
  386.  id  |  firstname   |    lastname    |               email                | gender |    dob     |        country         | age
  387. -----+--------------+----------------+------------------------------------+--------+------------+------------------------+-----
  388.    4 | Yorke        | Baggalley      | [email protected]           | Male   | 1998-08-16 | Portugal               |  20
  389.    6 | Fitz         | Keble          |                                    | Male   | 1998-04-25 | Mexico                 |  20
  390.    7 | Bogart       | Casoni         |                                    | Male   | 1998-05-11 | Bosnia and Herzegovina |  20
  391.    9 | Ave          | Folland        | [email protected]                 | Male   | 1998-07-26 | Canada                 |  20
  392.   10 | Jessie       | Gookey         | [email protected]             | Male   | 1997-08-07 | Philippines            |  20
  393.   13 | Wye          | Fulton         | [email protected]                 | Male   | 1997-05-01 | Bolivia                |  20
  394.   14 | Ben          | Witherden      | [email protected]      | Male   | 1996-03-20 | Brazil                 |  20
  395.   19 | Phillipe     | Paulson        | [email protected]         | Male   | 1997-07-13 | Thailand               |  20
  396.   21 | Witty        | Cunnington     | [email protected]          | Male   | 1998-08-14 | China                  |  20
  397.   23 | Derby        | Hilbourne      | [email protected]       | Male   | 1996-08-18 | Russia                 |  20
  398.   27 | Pen          | Dows           | [email protected]                     | Male   | 1996-07-04 | Indonesia              |  20
  399.   30 | Arnuad       | Bicknell       |                                    | Male   | 1997-05-14 | China                  |  20
  400.   31 | Morton       | Wilstead       | [email protected]          | Male   | 1997-06-29 | Sweden                 |  20
  401.   32 | Neils        | Groundwater    | [email protected]         | Male   | 1996-05-30 | Russia                 |  20
  402.   33 | Igor         | Abbatt         | [email protected]                 | Male   | 1996-03-31 | Chile                  |  20
  403.   35 | Eduino       | Fenty          |                                    | Male   | 1997-12-13 | Greece                 |  20
  404.   36 | Torre        | Benson         | [email protected]      | Male   | 1997-02-03 | Cameroon               |  20
  405.   39 | Marlow       | Streatfeild    |                                    | Male   | 1996-06-26 | Czech Republic         |  20
  406.   40 | Ernestus     | Baddoe         | [email protected]         | Male   | 1997-01-12 | China                  |  20
  407.   41 | Zared        | O'Dare         | [email protected]           | Male   | 1998-09-28 | Portugal               |  20
  408.  42 | Meryl        | Dahlgren       | [email protected]    | Male   | 1996-11-19 | Macedonia              |  20
  409.  44 | Falkner      | Orth           |                                    | Male   | 1997-06-12 | China                  |  20
  410.  46 | Wake         | Fairlem        | [email protected]           | Male   | 1996-02-20 | Armenia                |  20
  411.  47 | Ave          | Van Hesteren   |                                    | Male   | 1997-02-09 | Russia                 |  20
  412.  50 | Davide       | Sambals        |                                    | Male   | 1998-01-04 | China                  |  20
  413.  51 | Filip        | Skinner        |                                    | Male   | 1996-11-13 | Argentina              |  20
  414.  52 | Guss         | Greser         | [email protected]              | Male   | 1996-11-08 | Indonesia              |  20
  415.  55 | Richart      | Apedaile       |                                    | Male   | 1997-03-22 | Argentina              |  20
  416.  58 | Gauthier     | Roselli        |                                    | Male   | 1998-09-21 | France                 |  20
  417.  61 | Hal          | Thairs         | [email protected]             | Male   | 1997-02-24 | Portugal               |  20
  418.  63 | Erhard       | Shearn         | [email protected]          | Male   | 1996-04-01 | Thailand               |  20
  419.  64 | Basil        | Dominy         | [email protected]          | Male   | 1998-07-16 | Russia                 |  20
  420.  65 | Aristotle    | Cody           | [email protected]                  | Male   | 1997-04-22 | Venezuela              |  20
  421.  67 | Grenville    | Irnis          | [email protected]                 | Male   | 1999-01-11 | China                  |  20
  422.  70 | Barbabas     | Pykett         | [email protected]            | Male   | 1998-09-19 | France                 |  20
  423.  72 | Maximilianus | Zollner        | [email protected]             | Male   | 1997-01-01 | China                  |  20
  424.  73 | Beck         | Cowp           |                                    | Male   | 1998-11-15 | Indonesia              |  20
  425.  74 | Bondy        | Bridgeman      | [email protected]             | Male   | 1998-08-03 | Peru                   |  20
  426.  75 | Rodrique     | Gaffey         | [email protected]                  | Male   | 1998-02-09 | Hungary                |  20
  427.  79 | Rinaldo      | Basketfield    | [email protected] | Male   | 1997-07-29 | China                  |  20
  428.  81 | Conway       | Jereatt        |                                    | Male   | 1998-03-04 | Greece                 |  20
  429.  82 | Trefor       | Eisold         | [email protected]                | Male   | 1997-08-11 | Russia                 |  20
  430.  84 | Ogden        | Caillou        | [email protected]                 | Male   | 1999-01-02 | Bangladesh             |  20
  431.  85 | Neddie       | Dienes         | [email protected]                 | Male   | 1998-09-08 | China                  |  20
  432.  87 | Donalt       | Heinssen       | [email protected]       | Male   | 1999-01-01 | South Africa           |  20
  433.  89 | Lazar        | Brakespear     | [email protected]         | Male   | 1996-03-12 | Portugal               |  20
  434. -- More  --
  435.  
Tags: sql postgresql
Add Comment
Please, Sign In to add comment