Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations IamaSherpa on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Is Mysql a relationnal database?

Status
Not open for further replies.

HoMyGod

Programmer
Jul 17, 2000
59
CH
Hello,

I would like to know if Mysql is considered as a relationnal database.
Is it possible to store a multi-dimensionnal array into mysql?

regards,
H.
 
OK, for a slightly less terse answer:

MySQL is relational in that a query can use primary keys from one table to index records in another table, etc... It is NOT relational in the sense of providing full Foreign Key constraints. In other words, it can be used relationally, but it is possible to break the relationships if you don't program your application correctly. Databases that offer full Foreign Key support make it possible for the database design itself to prevent an application from "breaking" relationships. PostgreSQL ( supports this, as do most enterprise-level databases.
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top