I have the following query for mysql but in doing it gives me error.
ALTER TABLE conexion ADD
panel_web varchar (255),
panel_web1 varchar (255),
panel_web2 varchar (255),
puerto_panel varchar (255);
The question is, how do I add several columns using the same query? (That same works well in SQL server 2008 r2 but in mySQL it does not work)
I appreciate the support.
I tried this one that they told me here but it does not turn out to be an error
ALTER TABLE conexion ADD
panel_web varchar (255) AFTER
panel_web1 varchar (255)AFTER
panel_web2 varchar (255) AFTER
puerto_panel varchar (255);
[Err] 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 'varchar (255) AFTER panel_web2 varchar (255) AFTER