Files
2026-06-22 16:45:25 +02:00

12 lines
293 B
SQL

INSERT INTO TableName (
Attribute,
OtherAttribute
) VALUES ( 1000, 'Value' );
DELETE FROM TableName WHERE Attribute > 50;
UPDATE TableName SET Attribute = Attribute + 1;
-- Import data from a CSV file (this is pgsql specific syntax)
COPY TableName FROM '/data.csv' WITH FORMAT csv;