Hi guys,
I'm using mysql and for the first time I'm trying to create view in order to facilitate my querys.
I consulted the mysql website with ref to views at:
http://dev.mysql.com/doc/refman/5.0/en/create-view.html
but the most simple statement that i write:
CREATE VIEW testing AS
SELECT * FROM empl WHERE id>864
returns a 1064 ERROR:
[root@localhost:3306] ERROR 1064: 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 'VIEW ...
does anyone know what am I doing wrong?