Why does the Wordpress database schema not use foreign keys?

mysql, sql, wordpress

Solution

WordPress uses MyISAM, because of more functionality and better performance, but MyISAM did not support foreign keys. It was a trade off.

Problem

Today i check the tables of the wordpress database but i can't find foreign keys to relate tables , can anybody tell me why wordpress don't have foreign keys ?

Original source