mirror of
https://github.com/janishutz/eth-summaries.git
synced 2026-07-27 15:24:37 +02:00
[DMDB] SQL intro (DML, DDL)
This commit is contained in:
@@ -0,0 +1,11 @@
|
||||
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;
|
||||
Reference in New Issue
Block a user