Can I create tables using Stored Procedures?
I am using MySQL. I had searched the web for instructions on how to create a table using stored procedure, but I didn’t find any results, I just found that you can create temporary tables. Is there any problem if I create tables using stored procedures?
Actually I want to check whether a table exists or not, then I have to create it.
You can create tables using procedures in mysql.
Reference link.