sql

来源:互联网 发布:fast迅捷网络手机软件 编辑:程序博客网 时间:2024/05/01 18:46

 重命名表明 :alter table old_name rename to  new_name;

 

查看数据库字符集类型: show variables like 'collation_%';

 

查看数据库有哪些存储引擎可以用: show engines;

 

导出数据:select pic_id from sp_photo_03 where pic_stat=1  into outfile '122.txt';

 

查看mysql状态:status;