Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I am using MySQL 5.0+ and I am trying to execute a big list of commands if a table does not exist. So I would like to have:

if not exist table
then
10000 line query that creates and populates the table with a lot of entries.
end if

The only problem is that I have been searching and so far I found out that MySQL does not support such a feature.

At the current moment I have:

IF NOT EXISTS `profiles`
THEN
    A LOT OF QUERIES;
END IF;

For some reason it keeps on giving me error saying syntax is wrong on line 1.

So I was wondering if anyone would happen to have a better idea as to how go about approaching this problem, or how to fix it.

share|improve this question

3 Answers

up vote 3 down vote accepted

Addding on to code from bfavaretto, if you do have information_schema.tables, try something like this:

IF NOT EXISTS (SELECT * FROM information_schema.tables
WHERE table_schema = 'databasename'
AND table_name = 'tablename')
do your big long create table stuff
share|improve this answer

You have to query the information_schema database. Found this answer on MySQL Forums:

SELECT table_name
FROM information_schema.tables
WHERE table_schema = 'databasename'
AND table_name = 'tablename';
share|improve this answer
this does not appear to be relevant - the OP wants to know how to conditionally execute some other SQL if the table doesn't exist. – Alnitak Jan 30 '12 at 19:01
@Alnitak, but the only way to know if the table exists or not is to query information_schema. He's probably creating a PROCEDURE, so he can use the query I posted, assign table_name to a variable and do the condition check based on that. – bfavaretto Jan 30 '12 at 19:05

You can try something like

CREATE PROCEDURE test()
BEGIN
  DECLARE tmp INT;
  DECLARE CONTINUE HANDLER FOR  1146  -- 1146 - table does not exist
  BEGIN
     -- A lot of queries
  END;
  SELECT 1 INTO tmp FROM profiles LIMIT 1; -- INTO just to prevent any output
END;
share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.