Einstieg in SQL: Inkl. SQL Syntax von MySQL, Access, SQL Server, Oracle, PostgrSQL, DB2 und Firebird
Gespeichert in:
Hauptverfasser: | , |
---|---|
Format: | Medienkombination Buch |
Sprache: | German |
Veröffentlicht: |
Bonn
Galileo Press
2009
|
Ausgabe: | 3. Aufl. |
Schriftenreihe: | Galileo Computing
|
Schlagworte: | |
Online-Zugang: | Inhaltstext Inhaltsverzeichnis |
Beschreibung: | Erscheint: Oktober 2009 |
Beschreibung: | ca. 320 S. 168 mm x 240 mm |
ISBN: | 9783836214421 |
Internformat
MARC
LEADER | 00000nom a2200000 c 4500 | ||
---|---|---|---|
001 | BV035631488 | ||
003 | DE-604 | ||
008 | 090716s2009 gw ||| 0| bnger d | ||
015 | |a 09,N29,0043 |2 dnb | ||
016 | 7 | |a 995021198 |2 DE-101 | |
020 | |a 9783836214421 |c : EUR 24.90, EUR 25.60 (AT), sfr 42.90 (freier Pr.) |9 978-3-8362-1442-1 | ||
024 | 3 | |a 9783836214421 | |
035 | |a (OCoLC)916483004 | ||
035 | |a (DE-599)DNB995021198 | ||
040 | |a DE-604 |b ger |e rakddb | ||
041 | 0 | |a ger | |
044 | |a gw |c XA-DE-NW | ||
049 | |a DE-523 | ||
082 | 0 | |a 005.7565 |2 22/ger | |
084 | |a ST 271 |0 (DE-625)143639: |2 rvk | ||
084 | |a 004 |2 sdnb | ||
100 | 1 | |a Throll, Marcus |e Verfasser |0 (DE-588)123687179 |4 aut | |
245 | 1 | 0 | |a Einstieg in SQL |b Inkl. SQL Syntax von MySQL, Access, SQL Server, Oracle, PostgrSQL, DB2 und Firebird |c Marcus Throll ; Oliver Bartosch |
250 | |a 3. Aufl. | ||
264 | 1 | |a Bonn |b Galileo Press |c 2009 | |
300 | |a ca. 320 S. |c 168 mm x 240 mm | ||
490 | 0 | |a Galileo Computing | |
500 | |a Erscheint: Oktober 2009 | ||
650 | 0 | 7 | |a SQL |0 (DE-588)4134010-3 |2 gnd |9 rswk-swf |
650 | 0 | 7 | |a Befehlsvorrat |0 (DE-588)4129931-0 |2 gnd |9 rswk-swf |
689 | 0 | 0 | |a SQL |0 (DE-588)4134010-3 |D s |
689 | 0 | 1 | |a Befehlsvorrat |0 (DE-588)4129931-0 |D s |
689 | 0 | |5 DE-604 | |
700 | 1 | |a Bartosch, Oliver |e Verfasser |0 (DE-588)128977167 |4 aut | |
856 | 4 | 2 | |q text/html |u http://deposit.dnb.de/cgi-bin/dokserv?id=3326374&prov=M&dok_var=1&dok_ext=htm |3 Inhaltstext |
856 | 4 | 2 | |m DNB Datenaustausch |q application/pdf |u http://bvbr.bib-bvb.de:8991/F?func=service&doc_library=BVB01&local_base=BVB01&doc_number=017686425&sequence=000001&line_number=0001&func_code=DB_RECORDS&service_type=MEDIA |3 Inhaltsverzeichnis |
943 | 1 | |a oai:aleph.bib-bvb.de:BVB01-017686425 |
Datensatz im Suchindex
_version_ | 1805092658871271424 |
---|---|
adam_text |
AUF EINEN BLICK 1 EINLEITUNG 15 2 DATENBANKENTWURF 23 3
DATENBANKDEFINITION 43 4 DATENSAETZE EINFUEGEN (INSERT INTO) 95 5 DATEN
ABFRAGEN (SELECT) 99 6 DATEN AUS MEHREREN TABELLEN ABFRAGEN (JOIN) 143 7
UNTERABFRAGEN (SUBSELECTS) 155 8 DATENSAETZE AENDERN (UPDATE) 167 9
DATENSAETZE LOESCHEN (DELETE FROM) 173 10 DATENSICHTEN 179 11
TRANSAKTIONEN 189 12 ROUTINEN UND TRIGGER 197 13 ZEICHENSAETZE UND
LOKALISIERUNG 207 14 BENUTZER, PRIVILEGIEN UND SICHERHEIT 213 15
SYSTEMKATALOG 221 16 SQL/XML 225 17 LOESUNGEN ZU DEN AUFGABEN 233 18
BEISPIELDATENBANK 271 19 SQL-SYNTAX GAENGIGER DATENBANKEN 279 20 INHALT
DER CD-ROM 311 BIBLIOGRAFISCHE INFORMATIONEN HTTP://D-NB.INFO/995021198
DIGITALISIERT DURCH 3 DATENBANKDEFINITION INHALT 1 EINLEITUNG VORWORT 11
1.1 AUFBAU DES BUCHES 15 1.2 DAS DURCHGEHENDE DATENBANKBEISPIEL 16 1.3
DIE SQL-UEBUNGEN 17 1.4 UEBUNGSSOFTWARE SQL-TEACHER 17 1.5 NOTATIONEN 22
BB3BB 2.1 WAS IST SQL? 23 2.2 PHASEN DER DATENBANKENTWICKLUNG 25 2.2.1
DATENMODELL 26 2.2.2 ER-MODELL 27 2.2.3 GRAFISCHE NOTATION VON
ER-MODELLEN 30 2.2.4 RELATIONALES DATENMODELL 32 2.2.5 PRIMAERSCHLUESSEL
33 2.2.6 FREMDSCHLUESSEL UND REFERENZIELLE INTEGRITAET 33 2.2.7
OPTIMIERUNG DES DATENMODELLS (NORMALISIERUNG) 35 HB 3.1 EINFUEHRUNG 43
3.2 TABELLEN UND DATENTYPEN 45 3.2.1 TEXT (STRING) 47 3.2.2 ZAHLEN 49
3.2.3 ZEITEN 51 3.2.4 BITS 53 3.2.5 LOGISCHE WERTE 54 3.3 TABELLEN
ANLEGEN (CREATE TABLE) 54 3.4 INTEGRITAETSREGELN 55 3.4.1 PRIMAERSCHLUESSEL
(PRIMARY KEY) 56 3.4.2 FREMDSCHLUESSEL (FOREIGN KEY) 59 3.4.3 DOPPELTE
WERTE VERHINDERN (UNIQUE) 65 3.4.4 NUR BESTIMMTE WERTE ZULASSEN (CHECK)
66 3.4.5 STANDARDWERTE (DEFAULT) 71 6 DATEN AUS MEHREREN TABELLEN
ABFRAGEN (JOIN) 3.5 DOMAENEN 72 3.5.1 DOMAENEN ERSTELLEN (CREATE DOMAIN)
72 3.5.2 DOMAENENDEFINITION AENDERN (ALTER DOMAIN) 78 3.5.3
DOMAENENDEFINITION LOESCHEN (DROP DOMAIN) 80 3.6 TABELLENDEFINITIONEN
VERAENDERN (ALTER TABLE) 82 3.7 TABELLEN LOESCHEN (DROP TABLE) 86 3.8
INDICES 88 3.8.1 WAS SIND INDICES? 88 3.8.2 INDEX BEI DER TABELLENANLAGE
DEFINIEREN 89 3.8.3 INDEX NACH TABELLENDEFINITION DEFINIEREN (CREATE
INDEX) 90 3.8.4 WANN SOLLTE EIN INDEX ANGELEGT WERDEN? 91 3.8.5 INDEX
LOESCHEN (DROP INDEX) 92 4 DATENSAETZE EINFUEGEN (INSERT INTO) 5 DATEN
ABFRAGEN (SELECT) 5.1 AUFBAU DES SELECT-BEFEHLS 102 5.1.1 ALLE SPALTEN
EINER TABELLE AUSGEBEN 102 5.1.2 SPALTEN AUSWAEHLEN 103 5.2 SELECT MIT
BEDINGUNG (WHERE) 106 5.2.1 VERGLEICHSOPERATOREN 109 5.3 AUSGABE
SORTIEREN (ORDER BY) 112 5.4 SELECT MIT GRUPPENBILDUNG (GROUP BY) 117
5.5 MENGENOPERATIONEN (UNION, INTERSECT, EXCEPT/ MINUS) 121 5.6
FUNKTIONEN FUER SELECT-BEFEHLE 125 5.6.1 AGGREGATFUNKTIONEN 126 5.6.2
MATHEMATISCHE FUNKTIONEN 131 5.6.3 DATUMSFUNKTIONEN 135 5.6.4
TYPUMWANDLUNG 136 5.6.5 ZEICHENKETTENFUNKTIONEN 137 NULL-WERTE IN
ABFRAGEN 140 5 6.1 RELATIONENALGEBRA 146 6.2 DER INNERE VERBUND (INNER
JOIN) 147 5.7 214 6.2.1 VARIANTEN DES INNER JOIN 150 6.3 DER AEUSSERE
VERBUND (LEFT JOIN/RIGHT JOIN) 153 7.1 UNTERABFRAGEN, DIE EINE ZEILE
ZURUECKGEBEN 157 7.2 UNTERABFRAGEN, DIE MEHR ALS EINE ZEILE ZURUECKGEBEN
160 7.3 REGELN FUER DIE VERWENDUNG VON UNTERABFRAGEN 165 8.1
UNTERABFRAGEN IN UPDATE-BEFEHLEN 170 9.1 UNTERABFRAGEN IN
DELETE-BEFEHLEN 176 10.1 DATENSICHT ERSTELLEN (CREATE VIEW) 179 10.2
VERHALTEN VON DATENSICHTEN BEIM AKTUALISIEREN 182 10.3 AKTUALISIEREN MIT
PRUEFOPTION 185 10.4 VIEWS AENDERN UND LOESCHEN (DROP VIEW) 186 11.1
EIGENSCHAFTEN VON TRANSAKTIONEN 190 11.1.1 TRANSAKTIONEN MIT SQL
DEFINIEREN 193 11.2 ISOLATIONSEBENEN BEI TRANSAKTIONEN 196 12.1
FUNKTIONEN UND PROZEDUREN 197 12.1.1 PROZEDUREN UND FUNKTIONEN LOESCHEN
201 12.2 TRIGGER (CREATE TRIGGER) 201 10 DATENSICHTEN 14.1 UEBERBLICK 213
14.2 BENUTZER UND ROLLEN 16 SQL/XML 15 SYSTEM 14.3 BENUTZERPRIVILEGIEN
EINRICHTEN (GRANT) 215 14.4 BENUTZERRECHTE UND VIEWS 218 14.5
BENUTZERPRIVILEGIEN LOESCHEN (REVOKE) 219 15.1 AUFBAU 221 15.2
INFORMATIONEN DES SYSTEMKATALOGS ABFRAGEN 222 ES 16.1 WAS IST XML 225
16.2 DER XML-DATENTYP 228 16.3 XML-FUNKTIONEN 229 16.3.1 XMLELEMENTO 229
16.3.2 XMLATTRIBUTESO 230 16.3.3 XMLROOTO 230 16.3.4 XMLCONCATO 230
16.3.5 XMLCOMMENTO 230 16.3.6 XMLPARSEO 230 16.3.7 XMLFORESTO 231 16.3.8
XMLAGGO 231 16.4 EXPORT DER DATENBANK ALS XML 231 17.1 LOESUNGEN ZU
KAPITEL 2 233 17.2 LOESUNGEN ZU KAPITEL 3 235 17.3 LOESUNGEN ZU KAPITEL 4
247 17.4 LOESUNGEN ZU KAPITEL 5 248 17.5 LOESUNGEN ZU KAPITEL 6 257 17.6
LOESUNGEN ZU KAPITEL 7 260 17.7 LOESUNGEN ZU KAPITEL 8 261 17.8 LOESUNGEN
ZU KAPITEL 9 262 17.9 LOESUNGEN ZU KAPITEL 10 263 17.10 LOESUNGEN ZU
KAPITEL 12 264 17.11 LOESUNGEN ZU KAPITEL 13 265 17.12 LOESUNGEN ZU
KAPITEL 14 266 17.13 LOESUNGEN ZU KAPITEL 15 270 INDEX 313 18
BEISPIELDATENBANK 19 SQL-SYNTAX GAENGIGER DATENBANKEN 19.1 DIE
AUSGEWAEHLTEN DATENBANKEN 279 19.2 DATENTYPEN 280 19.3 TABELLEN ANLEGEN,
AENDERN, LOESCHEN 283 19.4 DOMAENEN ANLEGEN, AENDERN, LOESCHEN 289 19.5
INDICES ANLEGEN, AENDERN, LOESCHEN 291 19.6 DATENSAETZE EINFUEGEN, AENDERN,
LOESCHEN 293 19.7 DATEN ABFRAGEN (SELECT) 295 19.8 DATENSICHTEN (VIEWS)
301 19.9 TRANSAKTIONEN 302 19.10 PROZEDUREN/FUNKTIONEN/TRIGGER 303 19.11
BENUTZER, PRIVILEGIEN, SICHERHEIT 307 19.12 UNTERSTUETZUNG VON XML IN
DATENBANKEN 309 |
any_adam_object | 1 |
author | Throll, Marcus Bartosch, Oliver |
author_GND | (DE-588)123687179 (DE-588)128977167 |
author_facet | Throll, Marcus Bartosch, Oliver |
author_role | aut aut |
author_sort | Throll, Marcus |
author_variant | m t mt o b ob |
building | Verbundindex |
bvnumber | BV035631488 |
classification_rvk | ST 271 |
ctrlnum | (OCoLC)916483004 (DE-599)DNB995021198 |
dewey-full | 005.7565 |
dewey-hundreds | 000 - Computer science, information, general works |
dewey-ones | 005 - Computer programming, programs, data, security |
dewey-raw | 005.7565 |
dewey-search | 005.7565 |
dewey-sort | 15.7565 |
dewey-tens | 000 - Computer science, information, general works |
discipline | Informatik |
edition | 3. Aufl. |
format | Kit Book |
fullrecord | <?xml version="1.0" encoding="UTF-8"?><collection xmlns="http://www.loc.gov/MARC21/slim"><record><leader>00000nom a2200000 c 4500</leader><controlfield tag="001">BV035631488</controlfield><controlfield tag="003">DE-604</controlfield><controlfield tag="008">090716s2009 gw ||| 0| bnger d</controlfield><datafield tag="015" ind1=" " ind2=" "><subfield code="a">09,N29,0043</subfield><subfield code="2">dnb</subfield></datafield><datafield tag="016" ind1="7" ind2=" "><subfield code="a">995021198</subfield><subfield code="2">DE-101</subfield></datafield><datafield tag="020" ind1=" " ind2=" "><subfield code="a">9783836214421</subfield><subfield code="c">: EUR 24.90, EUR 25.60 (AT), sfr 42.90 (freier Pr.)</subfield><subfield code="9">978-3-8362-1442-1</subfield></datafield><datafield tag="024" ind1="3" ind2=" "><subfield code="a">9783836214421</subfield></datafield><datafield tag="035" ind1=" " ind2=" "><subfield code="a">(OCoLC)916483004</subfield></datafield><datafield tag="035" ind1=" " ind2=" "><subfield code="a">(DE-599)DNB995021198</subfield></datafield><datafield tag="040" ind1=" " ind2=" "><subfield code="a">DE-604</subfield><subfield code="b">ger</subfield><subfield code="e">rakddb</subfield></datafield><datafield tag="041" ind1="0" ind2=" "><subfield code="a">ger</subfield></datafield><datafield tag="044" ind1=" " ind2=" "><subfield code="a">gw</subfield><subfield code="c">XA-DE-NW</subfield></datafield><datafield tag="049" ind1=" " ind2=" "><subfield code="a">DE-523</subfield></datafield><datafield tag="082" ind1="0" ind2=" "><subfield code="a">005.7565</subfield><subfield code="2">22/ger</subfield></datafield><datafield tag="084" ind1=" " ind2=" "><subfield code="a">ST 271</subfield><subfield code="0">(DE-625)143639:</subfield><subfield code="2">rvk</subfield></datafield><datafield tag="084" ind1=" " ind2=" "><subfield code="a">004</subfield><subfield code="2">sdnb</subfield></datafield><datafield tag="100" ind1="1" ind2=" "><subfield code="a">Throll, Marcus</subfield><subfield code="e">Verfasser</subfield><subfield code="0">(DE-588)123687179</subfield><subfield code="4">aut</subfield></datafield><datafield tag="245" ind1="1" ind2="0"><subfield code="a">Einstieg in SQL</subfield><subfield code="b">Inkl. SQL Syntax von MySQL, Access, SQL Server, Oracle, PostgrSQL, DB2 und Firebird</subfield><subfield code="c">Marcus Throll ; Oliver Bartosch</subfield></datafield><datafield tag="250" ind1=" " ind2=" "><subfield code="a">3. Aufl.</subfield></datafield><datafield tag="264" ind1=" " ind2="1"><subfield code="a">Bonn</subfield><subfield code="b">Galileo Press</subfield><subfield code="c">2009</subfield></datafield><datafield tag="300" ind1=" " ind2=" "><subfield code="a">ca. 320 S.</subfield><subfield code="c">168 mm x 240 mm</subfield></datafield><datafield tag="490" ind1="0" ind2=" "><subfield code="a">Galileo Computing</subfield></datafield><datafield tag="500" ind1=" " ind2=" "><subfield code="a">Erscheint: Oktober 2009</subfield></datafield><datafield tag="650" ind1="0" ind2="7"><subfield code="a">SQL</subfield><subfield code="0">(DE-588)4134010-3</subfield><subfield code="2">gnd</subfield><subfield code="9">rswk-swf</subfield></datafield><datafield tag="650" ind1="0" ind2="7"><subfield code="a">Befehlsvorrat</subfield><subfield code="0">(DE-588)4129931-0</subfield><subfield code="2">gnd</subfield><subfield code="9">rswk-swf</subfield></datafield><datafield tag="689" ind1="0" ind2="0"><subfield code="a">SQL</subfield><subfield code="0">(DE-588)4134010-3</subfield><subfield code="D">s</subfield></datafield><datafield tag="689" ind1="0" ind2="1"><subfield code="a">Befehlsvorrat</subfield><subfield code="0">(DE-588)4129931-0</subfield><subfield code="D">s</subfield></datafield><datafield tag="689" ind1="0" ind2=" "><subfield code="5">DE-604</subfield></datafield><datafield tag="700" ind1="1" ind2=" "><subfield code="a">Bartosch, Oliver</subfield><subfield code="e">Verfasser</subfield><subfield code="0">(DE-588)128977167</subfield><subfield code="4">aut</subfield></datafield><datafield tag="856" ind1="4" ind2="2"><subfield code="q">text/html</subfield><subfield code="u">http://deposit.dnb.de/cgi-bin/dokserv?id=3326374&prov=M&dok_var=1&dok_ext=htm</subfield><subfield code="3">Inhaltstext</subfield></datafield><datafield tag="856" ind1="4" ind2="2"><subfield code="m">DNB Datenaustausch</subfield><subfield code="q">application/pdf</subfield><subfield code="u">http://bvbr.bib-bvb.de:8991/F?func=service&doc_library=BVB01&local_base=BVB01&doc_number=017686425&sequence=000001&line_number=0001&func_code=DB_RECORDS&service_type=MEDIA</subfield><subfield code="3">Inhaltsverzeichnis</subfield></datafield><datafield tag="943" ind1="1" ind2=" "><subfield code="a">oai:aleph.bib-bvb.de:BVB01-017686425</subfield></datafield></record></collection> |
id | DE-604.BV035631488 |
illustrated | Not Illustrated |
indexdate | 2024-07-20T10:15:07Z |
institution | BVB |
isbn | 9783836214421 |
language | German |
oai_aleph_id | oai:aleph.bib-bvb.de:BVB01-017686425 |
oclc_num | 916483004 |
open_access_boolean | |
owner | DE-523 |
owner_facet | DE-523 |
physical | ca. 320 S. 168 mm x 240 mm |
publishDate | 2009 |
publishDateSearch | 2009 |
publishDateSort | 2009 |
publisher | Galileo Press |
record_format | marc |
series2 | Galileo Computing |
spelling | Throll, Marcus Verfasser (DE-588)123687179 aut Einstieg in SQL Inkl. SQL Syntax von MySQL, Access, SQL Server, Oracle, PostgrSQL, DB2 und Firebird Marcus Throll ; Oliver Bartosch 3. Aufl. Bonn Galileo Press 2009 ca. 320 S. 168 mm x 240 mm Galileo Computing Erscheint: Oktober 2009 SQL (DE-588)4134010-3 gnd rswk-swf Befehlsvorrat (DE-588)4129931-0 gnd rswk-swf SQL (DE-588)4134010-3 s Befehlsvorrat (DE-588)4129931-0 s DE-604 Bartosch, Oliver Verfasser (DE-588)128977167 aut text/html http://deposit.dnb.de/cgi-bin/dokserv?id=3326374&prov=M&dok_var=1&dok_ext=htm Inhaltstext DNB Datenaustausch application/pdf http://bvbr.bib-bvb.de:8991/F?func=service&doc_library=BVB01&local_base=BVB01&doc_number=017686425&sequence=000001&line_number=0001&func_code=DB_RECORDS&service_type=MEDIA Inhaltsverzeichnis |
spellingShingle | Throll, Marcus Bartosch, Oliver Einstieg in SQL Inkl. SQL Syntax von MySQL, Access, SQL Server, Oracle, PostgrSQL, DB2 und Firebird SQL (DE-588)4134010-3 gnd Befehlsvorrat (DE-588)4129931-0 gnd |
subject_GND | (DE-588)4134010-3 (DE-588)4129931-0 |
title | Einstieg in SQL Inkl. SQL Syntax von MySQL, Access, SQL Server, Oracle, PostgrSQL, DB2 und Firebird |
title_auth | Einstieg in SQL Inkl. SQL Syntax von MySQL, Access, SQL Server, Oracle, PostgrSQL, DB2 und Firebird |
title_exact_search | Einstieg in SQL Inkl. SQL Syntax von MySQL, Access, SQL Server, Oracle, PostgrSQL, DB2 und Firebird |
title_full | Einstieg in SQL Inkl. SQL Syntax von MySQL, Access, SQL Server, Oracle, PostgrSQL, DB2 und Firebird Marcus Throll ; Oliver Bartosch |
title_fullStr | Einstieg in SQL Inkl. SQL Syntax von MySQL, Access, SQL Server, Oracle, PostgrSQL, DB2 und Firebird Marcus Throll ; Oliver Bartosch |
title_full_unstemmed | Einstieg in SQL Inkl. SQL Syntax von MySQL, Access, SQL Server, Oracle, PostgrSQL, DB2 und Firebird Marcus Throll ; Oliver Bartosch |
title_short | Einstieg in SQL |
title_sort | einstieg in sql inkl sql syntax von mysql access sql server oracle postgrsql db2 und firebird |
title_sub | Inkl. SQL Syntax von MySQL, Access, SQL Server, Oracle, PostgrSQL, DB2 und Firebird |
topic | SQL (DE-588)4134010-3 gnd Befehlsvorrat (DE-588)4129931-0 gnd |
topic_facet | SQL Befehlsvorrat |
url | http://deposit.dnb.de/cgi-bin/dokserv?id=3326374&prov=M&dok_var=1&dok_ext=htm http://bvbr.bib-bvb.de:8991/F?func=service&doc_library=BVB01&local_base=BVB01&doc_number=017686425&sequence=000001&line_number=0001&func_code=DB_RECORDS&service_type=MEDIA |
work_keys_str_mv | AT throllmarcus einstieginsqlinklsqlsyntaxvonmysqlaccesssqlserveroraclepostgrsqldb2undfirebird AT bartoscholiver einstieginsqlinklsqlsyntaxvonmysqlaccesssqlserveroraclepostgrsqldb2undfirebird |