Hi monetdb people,
How do I find all foreign key relationships with MonetDB using SQL?
I now have:
"select idxs.name, tables.name from sys.tables, sys.idxs where tables.id = idxs.table_id and idxs.type=1;"
But that doesn't give me the related table. Any suggestion? I can't find documentation of the sys tables on the website, does it exist?