mysql
: 02 kwietnia 2007, 16:58
Witam.Korzystając z tej strony zainstalowałem mysql.Odpala się dobrze.Gdy wpisuje pierwszy program ze strony z tabela Employees dostaje cos takiego:
Byłbym wdzięczny za jakąś podpowiedź.
Kod: Zaznacz cały
mysql> create table Employees {
-> empid char(10) not null,
-> lastname char(30) not null,
-> firstname char(20) not null,
-> deptno char(4) not null,
-> title char(30),
-> email char(25),
-> phone char(8),
-> fax char(8),
-> primary key(empid) )
-> ;
ERROR 1064 (42000): You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near '{
empid char(10) not null,
lastname char(30) not null,
firstname char(20) not nu' at line 1
mysql>