i wish to make a simple interogation in mysql 4.1.14-standard-log like this
create view v as select * from table1
and i get the folowing 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 v AS SELECT * from table1' at line 1
in this case all i have to do is to use multiple selects in same interogation? this is not too much for the server? i need to make a join between 6 tables
Joining across six tables is often quite intensive for servers. Look into doing subqueries, which may be a bit less intensive. You could also look at temporary tables.