"Morten Gulbrandsen" <[EMAIL PROTECTED]> wrote:
>
> I use Version DBMS MySQL 3.23.55 runing under Windows 2000.
>
> I have coded this from a textbook;
> ===
>
>
> C:\mysql\bin>type constraint.sql
> USE company;
>
> DROP TABLE IF EXISTS EMPLOYEE;
>
> CREATE TABLE EMPLOYEE
> (
> FNAME
Hello programmers:
I use Version DBMS MySQL 3.23.55 runing under Windows 2000.
I have coded this from a textbook;
===
C:\mysql\bin>type constraint.sql
USE company;
DROP TABLE IF EXISTS EMPLOYEE;
CREATE TABLE EMPLOYEE
(
FNAME VARCHAR(15) NOT NULL,
MINIT CHAR,
LNAME