mysql  用户自定义表变量,ENGINE=MyISAM DEFAULT CHARSET=gb2312; 制定编码方式,防止乱码

DROP TABLE IF EXISTS p_temp;  
 create temporary TABLE p_temp 
  (  
   RowIndex int  
   ,PRIMARY KEY (`RowIndex`)
		)ENGINE=MyISAM DEFAULT CHARSET=gb2312;  

 

相关文章: