Git Product home page Git Product logo

uebung-dbi-006's Introduction

Uebung-dbi-006 -- ADAT Personentabelle

Angabe.pdf

angabe


SPOILER Lösung :

💾 sql - Programm:

👉 ausklappen 👈
-- create tables
--                        Spalten       |   Datentyp      |  Constraint  (foreign key)
create table PERSONEN(    PERSONEN_ID       number(4)        primary key,
                         NNAME             varchar(25)      NOT NULL,
                         VNAME             varchar(20))
-----------------------------------------------------------------------------------------

-- insert into tables
--          TABLE             PERSONEN_ID  |   NNAME        |  VNAME
insert into PERSONEN values ( 1,              'Mustermann',   'Max');
insert into PERSONEN values ( 2,              'Musterfrau',   'Mimi');

select * from PERSONEN;

-- 99999 <-- too long...number at max 9999:
insert into PERSONEN values ( 9999,           'Musterfrau',   'Maria');
select * from PERSONEN;
-----------------------------------------------------------------------------------------

-- alter table
/*                                    Spalten |   Datentyp   |  Constraint
           TABLE     add/alter/drop                                                   */
alter table PERSONEN  add             GEBDATE   date;
alter table PERSONEN  modify          NNAME     varchar(20);
alter table PERSONEN  drop column     VNAME;
-----------------------------------------------------------------------------------------

-- drop tables
drop table PERSONEN CASCADE CONSTRAINTS;     /* cascade constraints hier eigentlich noch 
                                               nicht notwendig, da keine 2. Tabelle mit 
                                               dieser verknüpft ist.
-----------------------------------------------------------------------------------------

uebung-dbi-006's People

Watchers

 avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.