fix two kinds of typos
bezeichung was written without n before ung insert or ignore into consistently, but was `insert`, or `insert or into` in previous drafts
This commit is contained in:
parent
cf21ead3e2
commit
6c19b77768
1 changed files with 8 additions and 8 deletions
|
@ -13,9 +13,9 @@ CREATE TABLE IF NOT EXISTS transaktion_art (
|
|||
art VARCHAR(50) NOT NULL
|
||||
);
|
||||
|
||||
INSERT INTO transaktion_art(art_id, art) VALUES (1, 'monatlicher_beitrag');
|
||||
INSERT INTO transaktion_art(art_id, art) VALUES (2, 'aufladung');
|
||||
INSERT INTO transaktion_art(art_id, art) VALUES (3, 'einkauf');
|
||||
INSERT OR IGNORE INTO transaktion_art(art_id, art) VALUES (1, 'monatlicher_beitrag');
|
||||
INSERT OR IGNORE INTO transaktion_art(art_id, art) VALUES (2, 'aufladung');
|
||||
INSERT OR IGNORE INTO transaktion_art(art_id, art) VALUES (3, 'einkauf');
|
||||
|
||||
CREATE TABLE IF NOT EXISTS transaktion (
|
||||
transaktion_id INT NOT NULL PRIMARY KEY,
|
||||
|
@ -41,16 +41,16 @@ CREATE TABLE IF NOT EXISTS mwst (
|
|||
prozent INT NOT NULL
|
||||
);
|
||||
|
||||
INSERT INTO mwst(mwst_id, prozent) VALUES (1, 7);
|
||||
INSERT INTO mwst(mwst_id, prozent) VALUES (2, 19);
|
||||
INSERT OR IGNORE INTO mwst(mwst_id, prozent) VALUES (1, 7);
|
||||
INSERT OR IGNORE INTO mwst(mwst_id, prozent) VALUES (2, 19);
|
||||
|
||||
CREATE TABLE IF NOT EXISTS einheit(
|
||||
einheit_id INT NOT NULL PRIMARY KEY,
|
||||
bezeichung VARCHAR(50) NOT NULL
|
||||
bezeichnung VARCHAR(50) NOT NULL
|
||||
);
|
||||
|
||||
INSERT INTO einheit(einheit_id, bezeichnung) VALUES (1, 'stueck');
|
||||
INSERT INTO einheit(einheit_id, bezeichnung) VALUES (2, 'menge');
|
||||
INSERT OR IGNORE INTO einheit(einheit_id, bezeichnung) VALUES (1, 'stueck');
|
||||
INSERT OR IGNORE INTO einheit(einheit_id, bezeichnung) VALUES (2, 'menge');
|
||||
|
||||
CREATE TABLE IF NOT EXISTS artikel (
|
||||
artikel_id INT NOT NULL PRIMARY KEY,
|
||||
|
|
Loading…
Reference in a new issue