MySQL Forums
Forum List  »  Performance

Re: Time performance in query Inner Join
Posted by: Rick James
Date: July 10, 2011 04:28PM

> Sorry but I'm newbie... I hope you understand...
You have frequented the Newbie forum more than anyone else in the last several months. It is time for you to graduate. (You are barely ahead of "aluminum risers", but he/she never seems to ask any MySQL questions.)

> SHOW CREATE TABLE _tbl1\G;
works fine from the mysql commandline program. What tool are you using? Try it without the "\G", which tells the commandline program to display the results vertically (which is often clearer in this forum).

> SHOW TABLE STATUS LIKE _tbl1\G;
You need the quotes --
SHOW TABLE STATUS LIKE '_tbl1' ;

> EXPLAIN SELECT _tbl1\G;
No, not just the table name, the entire select statement.

Start over.

Options: ReplyQuote


Subject
Views
Written By
Posted
Re: Time performance in query Inner Join
947
July 10, 2011 04:28PM


Sorry, you can't reply to this topic. It has been closed.

Content reproduced on this site is the property of the respective copyright holders. It is not reviewed in advance by Oracle and does not necessarily represent the opinion of Oracle or any other party.