Definition of domains in mySQL?
Posted
by
mal
on Stack Overflow
See other posts from Stack Overflow
or by mal
Published on 2011-11-18T09:46:45Z
Indexed on
2011/11/18
9:50 UTC
Read the original article
Hit count: 184
mysql
|attributes
I'm working on a college exercise and have the following question:
What is the domain of the "country" table?
My understanding of domain is that it defines the possible values of an attribute.
This means that the table "country" doesn't have a domain, but the various attributes in the table "country" have their own domains.
For example the attribute "SurfaceArea" has the domain FLOAT(10,2)
and the attribute "Name" has the domain CHAR(52)
.
Is this correct?
© Stack Overflow or respective owner