For SQLYog 10.11 if you do a query such as “SELECT * FROM temp” and then export that data as SQL the table name will be missing in the file for the insert statements and the create table statement eg:
create table “ (
`BrowserID` smallint ,
`Platform` varchar ,
`Browser` varchar ,
`Version` varchar ,
`Mobile` tinyint
);
insert into “ (`BrowserID`, `Platform`, `Browser`, `Version`, `Mobile`) values('0','Unknown','Unknown','0','0');
Thanks!