Dies ist eine alte Version des Dokuments!


LU07b - SQL-DML: INSERT

The INSERT command is used to add new records to a table. When using INSERT, it is essential to specify the table and columns where the data will be added.

Syntax

INSERT INTO table_name (column1, column2, column3) 
VALUES (value1, value2, value3);

Example

INSERT INTO employees (employee_id, first_name, last_name, hire_date, salary) 
VALUES (1, 'John', 'Doe', '2023-09-18', 55000);
English Deutsch
Obsolete veraltet
result-set Ergebnismenge

Volkan Demir

  • modul/m290/learningunits/lu07/theorie/02.1727693885.txt.gz
  • Zuletzt geändert: 2024/09/30 12:58
  • von vdemir