


CREATE TABLE customers (ID SERIAL PRIMARY KEY,
Name VARCHAR(50) NOT NULL,
Stadt VARCHAR(50),
Adresse VARCHAR(255)
);
INSERT INTO customers ( NAME, STADT, ADRESSE)
VALUES ( ‚Schulz‘, ‚Berlin‘, ‚Hauptstrasse 1‘);
SELECT * FROM customers;
DELETE FROM customers;
DROP TABLE customers;

This entry was posted on Sonntag, Februar 22nd, 2026 at 12:02 and is filed under Administration, AI, N8N, PostgreSQL Database. You can follow any responses to this entry through the RSS 2.0 feed.
You can leave a response, or trackback from your own site.