关于mysql表分区

http://lehsyh.iteye.com/blog/732719
http://x125858805.iteye.com/blog/2068120
http://blog.csdn.net/hijiankang/article/details/9173825

查看某个表的分区情况
select
  partition_name part, 
  partition_expression expr, 
  partition_description descr, 
  table_rows 
from information_schema.partitions  where
  table_schema = schema() 
  and table_name='employees';


mysql 主从
http://369369.blog.51cto.com/319630/790921/
http://blog.163.com/tfz_0611_go/blog/static/208497084201364104343122/
http://blog.csdn.net/g2321514568/article/details/12441049
http://blog.csdn.net/crazycoder2010/article/details/22228205

你可能感兴趣的:(mysql)