Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我正在一个需要使用外键的网站上工作,但我已经四处搜索,共享主机不支持 innoDB。我正在使用 MyISAM 引擎。是否有使用外键的替代方法?
我需要的:
table_image { image_id (PK) } table_ratings { rating_id(PK) image_id(FK) }
提前致谢。
在我幸运地自己切换到 innoDb 之前,我一直在苦苦挣扎。
我已经用一堆在线/批处理脚本实现了所有的插入/删除级联逻辑......
但实际上可能没问题,因为在一些非常特殊的情况下,您可以断开级联操作,这对于性能而言并不总是一个坏主意。
rgds。