select * from access;         
select * from adminlog ;       
select * from adminutil ;      
select * from announcement ;   
select * from attachment ;     
select * from avatar    ;      
select * from bbcode  ;        
select * from calendar_events ;
select * from customavatar  ;  
select * from forum      ;    
select * from forumpermission ;
select * from icon            ;
select * from moderator       ;
select * from poll            ;
select * from pollvote        ;
select * from post            ;
select * from privatemessage  ;
select * from profilefield    ;
select * from regimage        ;
select * from replacement     ;
select * from replacementset  ;
select * from search          ;
select * from searchindex     ;
select * from session         ;
select * from setting         ;
select * from settinggroup    ;
select * from smilie          ;
select * from style           ;
select * from subscribeforum  ;
select * from subscribethread ;
select * from template        ;
select * from templateset     ;
select * from thread          ;
select * from threadrate      ;
select * from user            ;
select * from useractivation  ;
select * from userfield       ;
select * from usergroup       ;
select * from usertitle       ;
select * from word            ;×××××××××××××××××××××××××××××××××××××××××××
东西太多怎么导入到文本里???

解决方案 »

  1.   

    what you are doing is more or less dumping 
    your database, if all words after "from" 
    are table name. what do you mean for 字段 ?
    like "select user_name from user_table" ?if so, if in linux, you could write all
    mysql statement into a text file named
    as mystatement.sqlthen, in a shell enter
    mysql -hhostname -Pportnumber -Ddatabasename -uusername -ppassword < mystatement.sql > result.txtit could output all result into the result.txtif you want to do something else, explain it clearly..