cough Well they're lying.
A "relational" database system that doesn't support database relations??? What's with that?
Even if you use the non-standard InnoDB tables you get restrict only foreign keys - they don't cascade in any way - so what on earth is the use of them?
"The tables are linked by defined relations making it possible to combine data from several tables on request." Exactly. ON REQUEST. ie. you 'link' them when you do a join, but not with foreign keys - sorry!
"common standardised language"??? Yes, SQL is standard, by MySQL is not. MySQL implements the bare_minuimum of the SQL standard, and has made many of it's own, quite arbitrary, changes to the standard. Have you ever seen its date/time manipulation - totally non standard. And what about working with NULLs - they just made up their own syntax.
MySQL is the least relational, most non-standard database I have ever had the misfortune of having to use. Do yourself a favour and switch to Postgres or Firebird or something.
Chris