sql >> データベース >  >> RDS >> Mysql

MySQLデータベースからの制約のリスト

    information_schema.table_constraints> 各テーブルで定義された制約の名前を取得するためのテーブル:

    select *
    from information_schema.table_constraints
    where constraint_schema = 'YOUR_DB'
    

    information_schema.key_column_usage<を使用します/ code> これらの制約のそれぞれのフィールドを取得するためのテーブル:

    select *
    from information_schema.key_column_usage
    where constraint_schema = 'YOUR_DB'
    

    代わりに、外部キー制約について話している場合は、を使用してください。 information_schema.referential_constraints

    select *
    from information_schema.referential_constraints
    where constraint_schema = 'YOUR_DB'
    


    1. SQL Server CLR統合は構成ファイルをサポートしていますか?

    2. MySQLとPHPの小数点以下の精度が間違っています

    3. mysqlデータベースを照会するときのETIMEDOUTエラー

    4. MariaDB FIELD()とFIND_IN_SET():違いは何ですか?