GITTA-Logo
PDF Version of this document Search Help

Lesson Navigation IconAnfragesprache SQL

Unit Navigation IconSQL Overview

Unit Navigation IconBasic database queries

Unit Navigation IconSQL Insert, Delete and Update

LO Navigation IconInserting tuples

LO Navigation IconDeleting tuples

LO Navigation IconUpdating tuples

Unit Navigation IconSummary

Unit Navigation IconRecommended Reading

Unit Navigation IconBibliography

Unit Navigation IconMetadata


GITTA/CartouCHe news:


Go to previous page Go to next page

Inserting tuples

In its most basic form the insert-command adds a tuple to an existing table.

The syntax is:

INSERT INTO Tablename (Attributelist)
VALUES (Valuelist);

Please note that the attributelist can be omitted if a complete tuple is inserted.

Inserting tuples
Top Go to previous page Go to next page