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つだけを使用する場合)が、2人が同時に同じ名と電子メールアドレスを持つことはできないという一意の制約を作成したい
これは可能ですか?
この DDL ステートメントを実行します。
ALTER TABLE myTable ADD CONSTRAINT tb_UQ UNIQUE(firstname, email)