SQLite3
摘要
To manage large volumes of data, it has to be stored in an organized and structured fashion so that it is easy to access and manipulate the data. A database management system (DBMS) is a software system for storing, retrieving, and manipulating data in the database. Different types of DBMS are Relational databases, Hierarchical databases, Network databases, etc. Relational database management systems organize data in the form of tables. Each table consists of columns representing attributes (property) and rows representing values of the attributes. Popular Relational database systems are Oracle, MySQL, PostgreSQL, IBM DB2, SQLite, etc. SQL is a structured query language used to store, retrieve, and manipulate data stored in relational databases.