导出 mysqldump
mysqldump -uroot -p -hlocalhost --databases mydb > mydb.sql
mysqldump -root -p -hloalhost mydb tableName > mydb.tableName.sql
导入
source /data/mydb.sql
清空表
truncate table tableName
case ... when ... then...else...
select a.title_en , case a.title_en
when 10 then '本站公告'
WHEN 12 then '中标'
WHEN 24 then '变更'
WHEn 11 then '招标'
else '未知'
end, count(a.id) from tbnews a group by a.title_en;
关机命令
mysqladmin -uroot shutdown