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

I recently switched from using a local MySQL instance to using a Xeround MySQL instance for my C# application. As such, I've noticed that queries run much more slowly. I'm currently running a left join to create a new table and am trying to shave a few seconds off my run time.

I've observed the following average run times: CREATE TABLE AS (SELECT ) - 14s CREATE TABLE & INSERT LEFT JOIN 14s SELECT statement only 9s CREATE TEMPORARY TABLE AS (SELECT ) 9.2s CREATE VIEW & Retrieve Contents 9.5s

Currently I am running the CREATE TABLE AS (SELECT) statement. Obviously, I would like to shave off the five second premium associated with moving from a select statement only, to a CREATE TABLE with a select statement. Using views seemed promising, but accessing data from the view is extremely slow, and doesn't justify the time savings here. Using a temporary table also seems promising, but with the way that I am making my function calls, the table will get deleted before I finish accessing it. Is there another keyword I can use to tell the MySQL engine to take the contents of a SELECT statement and put it into a barebones table?

Thanks!

share|improve this question
Are you sure your tables have indexes set up? – Kevin Jan 26 at 5:41
Yes. These numbers are from testing with indexes on the fields being joined. – user1120540 Jan 26 at 6:34

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
discard

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

Browse other questions tagged or ask your own question.