About 6,890,000 results
Open links in new tab
  1. sql - Add multiple constraints in one statement - Stack Overflow

    Jul 6, 2014 · ALTER TABLE TITLE ADD CONSTRAINT U_TITLEID UNIQUE(TITLE_ID), primary key (TITLE_ID); add constraint C_CATEGORY CHECK(CATEGORY='DRAMA' OR …

  2. SQL CHECK Constraint - W3Schools

    SQL CHECK Constraint The CHECK constraint is used to limit the value range that can be placed in a column. If you define a CHECK constraint on a column it will allow only certain values for …

  3. Unique constraints and check constraints - SQL Server

    Feb 4, 2025 · CHECK constraints enforce domain integrity by limiting the values that are accepted by one or more columns. You can create a CHECK constraint with any logical (Boolean) …

  4. mysql - Is it possible to perform two checks in the same query in one ...

    Sep 20, 2021 · After days of search and asking people, I found a workaround by myself to get both thread likes count as well as whether the current user liked that thread or not in only one …

  5. SQL | CHECK Constraint - GeeksforGeeks

    Dec 16, 2024 · In SQL, One such constraint is the CHECK constraint, which allows to enforcement of domain integrity by limiting the values that can be inserted or updated in a …

  6. Check Constraints in SQL Server | Best Practices & Examples

    May 5, 2025 · A CHECK constraint in SQL makes sure the values in one or more columns fit certain rules. It’s another layer of validation, one that can guarantee data integrity at the …

  7. Add a CHECK Constraint to an Existing Table in SQL Server (T-SQL)

    Sep 10, 2019 · This article demonstrates how to add a CHECK constraint to an existing table. You can add a constraint to an existing table by using the ALTER TABLE statement along with the …

  8. SQL Server CHECK CONSTRAINT

    1) SQL Server CHECK CONSTRAINT – column constraint example. To explore how column constraints are defined and work we will create the employees table through the following …

  9. sql - Add multiple CHECK constraints on one column depending …

    Given a table with two columns col1 and col2, how can I use the Oracle CHECK constraint to ensure that what is allowed in col2 depends on the corresponding col1 value. Specifically, if …

  10. Using Check ConstraintsSQLServerCentral

    Jan 9, 2002 · Check constraints can be added to a table to enforce specific rules on one or more columns. This article shows you how to use them to enforce simple and more complex rules.

  11. Some results have been removed
Refresh