Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

As simple in theory as it sounds I've done a fair amount of research and am having trouble figuring this out.

How can I check if a MySQL table exists and if it does do something. (I guess a simple php if/else statement could work for this)

Is there a way to do this?

This is what I have done with cwallenpoole's response:

mysql_connect("SERVER","USERNAME","PASSWORD");
mysql_select_db('DATABASE');

mysql_query('select 1 from `TABLE`')

if($val !== FALSE)
{
print("Exists");
}else{
   print("Doesn't exist");
}
share|improve this question
Please read my benchmarks below before making a final answer. – cwallenpoole Jun 22 '11 at 13:57

8 Answers

up vote 21 down vote accepted
// Select 1 from table_name will return false if the table does not exist.
$val = mysql_query('select 1 from `table_name`')

if($val !== FALSE)
{
   //DO SOMETHING! IT EXISTS!
}
else
{
    //I can't find it...
}

Admittedly, it is more Pythonic than of the PHP idiom, but on the other hand, you don't have to worry about dealing with a copious amount of extra data.

Edit

So, this answer has been marked down at least twice as of the time I am writing this message. Assuming that I had made some gargantuan error, I went and I ran some benchmarks, and this is what I found that my solution is over 10% faster than the nearest alternative when the table does not exist, and it over 25% faster when the table does exist:

:::::::::::::::::::::::::BEGINNING NON-EXISTING TABLE::::::::::::::::::::::::::::::
23.35501408577 for bad select
25.408507823944 for select from schema num rows -- calls mysql_num_rows on select... from information_schema.
25.336688995361 for select from schema fetch row -- calls mysql_fetch_row on select... from information_schema result
50.669058799744 for SHOW TABLES FROM test
:::::::::::::::::::::::::BEGINNING EXISTING TABLE::::::::::::::::::::::::::::::
15.293519973755 for good select
20.784908056259 for select from schema num rows
21.038464069366 for select from schema fetch row
50.400309085846 for SHOW TABLES FROM test

I tried running this against DESC, but I had a timeout after 276 seconds (24 seconds for my answer, 276 to fail to complete the description of a non existing table).

For good measure, I am benchmarking against a schema with only four tables in it and this is an almost fresh MySQL install (this is the only database so far). To see the export, look here.

AND FURTHERMORE

This particular solution is also more database independent as the same query will work in PgSQL and Oracle.

share|improve this answer
I tried your example but am having trouble with it (See example in edited question) – John Doe Jun 22 '11 at 14:45
Have you called mysql_select_db? – cwallenpoole Jun 22 '11 at 14:51
Yes, and I updated the question. – John Doe Jun 22 '11 at 14:52
1  
Ok, I see what's going on. !== FALSE means the table exists (answer updated). Here's what I have as a test:mysql_select_db('test', $c);if(mysql_query( 'SELECT 1 FROM foo' ) !== FALSE) echo 'foo';if(mysql_query( 'SELECT 1 FROM bar' ) !== FALSE) echo 'bar'; foo does not exist, bar does. I get 'bar' output to the browser. – cwallenpoole Jun 22 '11 at 14:55
Awesome thanks! This seemed to work beautifully and fast. I'm going to have several thousand tables so this will probably be PERFECT! I'm not sure why you recived so many down votes, you explained this well and so I +1 this. Thanks again! – John Doe Jun 22 '11 at 15:02
show 2 more comments
$res = mysql_query("SELECT table_name FROM information_schema.tables WHERE table_schema = '$databasename' AND table_name = '$tablename';");

If no records are returned then it doesn't exist.

share|improve this answer
How can I check if a record was returned? – John Doe Jun 22 '11 at 4:01
Please check my benchmarks as this does not seem to be the fastest – cwallenpoole Jun 22 '11 at 14:02
mysql_query("SHOW TABLES FROM yourDB");
//> loop thru results and see if it exists
//> in this way with only one query one can check easly more table 

or mysql_query("SHOW TABLES LIKE 'tblname'");

Don't use mysql_list_tables(); because it's deprecated

share|improve this answer
that would be a lot of iterating if you have 500+ tables – Nathan Romano Jun 21 '11 at 21:28
This is in the php documentation too: php.net/manual/en/function.mysql-list-tables.php – kevmo314 Jun 21 '11 at 21:28
@Nathan: someone who has 500 tables doens't ask how to check this – yes123 Jun 21 '11 at 21:28
3  
@Nathan: You can tack on a LIKE '<tablename>' as well. – kevmo314 Jun 21 '11 at 21:29
@kevmo: never use that. This function became deprecated. – yes123 Jun 21 '11 at 21:29
show 8 more comments

The cleanest way to achieve this in PHP is to simply use DESCRIBE statement.

if(mysql_query("DESCRIBE `table`")) {
    // Exists
}

I'm not sure why others are posting complicated queries for a such a straight forward problem.

share|improve this answer
This is the slowest solution of all. – Michal M Oct 30 '12 at 14:17
@MichalM thank you for your insightful comment. Let's play the game called 'put your money where your mouth is'. I will not even mention the fact that you should be caching results anyways but let's continue. Shall we? – Aleksey Korzun Feb 14 at 21:08
1  
Benchmarks using 1000 iterations (not even looping the result set to check for table name for #2): My approach: 0.29376912117004, show tables: 2.2018358707428, accepted answer: 4.2083020210266 Save your useless comments for somebody else. – Aleksey Korzun Feb 14 at 21:19

DO NOT USE MYSQL ANY MORE. If you must use mysqli but PDO is best:

$pdo = new PDO($dsn, $username, $pdo); // proper PDO init string here
if ($pdo->query("SELECT table_name FROM INFORMATION_SCHEMA.TABLES WHERE table_schema = 'db_name'")->fetch()) // table exists.
share|improve this answer
4  
you can still use mysql – Nathan Romano Jun 22 '11 at 14:40

SHOW TABLES LIKE 'TableName'

If you have ANY results, the table exists.

share|improve this answer
MySQL Documentation suggest looking at the schema information – Nathan Romano Jun 21 '11 at 21:29
Yeah, I'm probably too old school from the 3.23 days :) – Kevin Nelson Jun 21 '11 at 21:30
no you aren't show tables is still valid and good – yes123 Jun 21 '11 at 21:46
How can I check for a result? – John Doe Jun 22 '11 at 4:01

Or you could use

show tables where Tables_in_{insert_db_name}='tablename';

share|improve this answer

Even faster than a bad query:

SELECT count((1)) as `ct`  FROM INFORMATION_SCHEMA.TABLES where table_schema ='yourdatabasename' and table_name='yourtablename';

This way you can just retrieve one field and one value. .016 seconds for my slower system.

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.