Tadis is a relational database and it's my personal project. This system was developed for educational purposes and should not be used in production environments. Tadis supports poor SQL's grammers.
> git clone https://github.com/Haibarapink/tadis.git
> cd tadis
> mkdir build && cd build
> cmake ../
> make
...
- .quit
- .show tables
- Create table example
CREATE TABLE school (name varchar(200), age int);
Supports SQL types: VARCHAR(size), CHAR(size), FLOAT, INT.
- Insert example
INSERT INTO school VALUES ('AAU', 55);
- Select example
SELECT * FROM school;
SELECT school.name , school.age FROM school where age=100, 1>2;
- Drop table example
DROP TABLE school;
hf :)