What is Relational database? Definition and explanations
A relational database organises information in tables of rows and columns, linked to one another by keys. The model, formalised by Edgar Codd in 1970, ensures a given fact is stored in one place only and that the links stay consistent. You query it with SQL. PostgreSQL, MySQL and SQL Server are its most common representatives.
In one sentence
A relational database stores data in tables linked by keys and queried with SQL.