check-constraint Questions
4
Solved
I use SQL Server 2008
I use a CHECK CONSTRAINT on multiple columns in the same table to try to validate data input.
I receive an error:
Column CHECK constraint for column
'AAAA' references a...
Milner asked 9/8, 2010 at 7:24
1
Solved
CREATE TABLE LOCATION (
LOCID VARCHAR2(5)
, MINQTY NUMBER
, MAXQTY NUMBER
, PRIMARY KEY (LOCID)
, CONSTRAINT CHECK_LOCID_LENGTH CHECK (LENGTH(LOCID) = 5)
, CONSTRAINT CHECK_MINQTY_RANGE CHECK (MIN...
Mechanician asked 23/4, 2014 at 8:45
1
Solved
I have a customers table that links to an addresses table through a middle CustomerAddress table. This means that a customer can have many addresses and an address can have many customers. (This is...
Ragged asked 24/2, 2014 at 21:45
2
Solved
I have the following (fictitious) tables:
╔════════════════════╗ ╔════════════════════╗
║ Course ║ ║ Person ║
╠══════╦═════════════╣ ╠══════╦═════════════╣
║ ID ║ int ║ ║ ID ║ int ║
║ Name ║ varch...
Unfleshly asked 27/8, 2012 at 16:51
1
© 2022 - 2024 — McMap. All rights reserved.