[DMDB] relational model, relational algebra, SQL very basics

This commit is contained in:
2026-06-22 15:28:27 +02:00
parent cef70242ce
commit cf0bdbaff8
19 changed files with 157 additions and 18 deletions
+6
View File
@@ -0,0 +1,6 @@
CREATE TABLE TableName (
Attribute integer,
OtherAttribute varchar (30),
NextAttribute character (2) default "AP",
PRIMARY KEY (Attribute)
);