Alexander Siems wrote:
> CREATE TABLE MIETER ( anrede CHAR(5) CHECK anrede IN ('Frau','Herr','Firma'));
Das tut auch nicht, weil halt die Syntax nicht stimmt. So geht's
CREATE TABLE MIETER (anrede CHAR(5) CHECK (anrede IN ('Frau', 'Herr', 'Firma')));
Du willst wahrscheinlich auch noch ein "DEFAULT 'Herr'" einbauen (vor
dem CHECK dann.
Thomas
-- Thomas S. Strathmann http://pdp7.org RMS: NOOOOOObody expects the GNU Inquisition! Confess! Confess! Confess!
This archive was generated by hypermail 2.1.3 : Sun Apr 21 2002 - 18:44:43 CEST