SQLite
SQLite is a relational database management system contained in a C library. In contrast to many other database management systems
sqlite> .tables
FLAG appsqlite> SELECT * FROM FLAG;
44dd29a07a0086948ad19ad6376db7d6 sqlite> PRAGMA table_info(FLAG);
0|ID|INT|1||1
1|NAME|TEXT|1||0
2|AGE|INT|1||0
3|ADDRESS|CHAR(50)|0||0 sqlite> .quit sqlite> SELECT count(*) FROM employees;
8 Resource:
Last updated