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.
1 つのレコードのみに制限されたテーブルを mysql で作成できますか? 例: 金利を入力します。レコードは 1 つだけである必要があります。
別のオプション:利率を日付ごとに維持しないのはなぜですか?
date (DATE, primary) | interest_rate (FLOAT)
そうすれば、利率の履歴を利用できるようになり、行数を制限する必要がなくなり、1 日あたり 1 つの利率という制限が適用されます。
MySQL では不可能だとは思いませんがTRIGGER、interest テーブルに書き込むことでいくつかのトリックを行うことができます。
TRIGGER