I\'m running MySql in ubuntu 10.10. I created a table called \'employee\' having 3 field names empno, name and salary
MySql
ubuntu 10.10
\'employee\'
You must not have SQL_MODE set to strict on you ubuntu installation.
SQL_MODE
Issue
SET SQL_MODE='STRICT_ALL_TABLES'
or add
SQL_MODE='STRICT_ALL_TABLES'
under [mysqld] to your my.cnf on Ubuntu.
[mysqld]
my.cnf
Ubuntu