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.
我们可以在mysql中创建一个仅限于一条记录的表吗?例如:输入利率。应该只有一个记录。
另一种选择:你为什么不按日期保持利率?
date (DATE, primary) | interest_rate (FLOAT)
这样,您甚至可以获得可用的利率历史记录,无需限制行数,并且您仍然可以获得每天一次利率的限制。
我认为这在 MySQL 中是不可能的,但你可以通过TRIGGER在你的兴趣表上写来做一些技巧。
TRIGGER