Distinguish between flat file and relational database.
Answers
Explanation:
A flat file database stores data in a single table structure. A relational database uses multiple table structures, cross-referencing records between tables. Tables in both organize records in rows, with each column containing a single piece of data in the record
Answer:
The Correct Answer is mentioned below
Explanation:
Flat file databases are typically plain text files that hold one record per line and have record fields separated by whitespace or a delimiting character. A wide range of software applications can read flat file databases natively.
Relational databases, in addition to data tables, use "indices" to easily find records depending on search parameters. To manage and access data in relational databases, a relational database management system (RDBMS) is typically required.