Skip to content
Snippets Groups Projects
Select Git revision
  • d48edcd327479e7a230e1a34684f251a5cd47337
  • master default protected
  • 2018ws
  • 2017ws
  • 2016ws
5 results

gtk-01.c

Blame
  • Forked from Peter Gerwinski / hp
    Source project has a limited visibility.
    dbms-05.txt 552 B
    testdb=# \d
             Liste der Relationen
     Schema | Name |   Typ   | Eigentümer
    --------+------+---------+------------
     public | tier | Tabelle | postgres
    (1 Zeile)
    
    testdb=# INSERT INTO tier VALUES ( 'Esmeralda', 'Spinne' );
    INSERT 0 1
    testdb=# INSERT INTO tier VALUES ( 'Timmy', 'Hund' );
    INSERT 0 1
    testdb=# SELECT * FROM tier;
                  name              |            tierart
    --------------------------------+--------------------------------
     Esmeralda                      | Spinne
     Timmy                          | Hund
    (2 Zeilen)
    
    testdb=#