MySQL批量转换表名为小写(Python脚本)



  1. #!/usr/bin/env python
  2. # -*-encoding:utf8-*-
  3. #

  4. import MySQLdb
  5. import time
  6. step = 0
  7. db = MySQLdb.connect(host = '192.168.20.42',port = 61306,user = 'test',passwd = 'test' , db = 'information_schema')
  8. conn = db.cursor()

  9. sql = '''select TABLE_SCHEMA, table_name from information_schema.tables where table_schema not in ('information_schema', 'performance_schema', 'mysql') '''
  10. # print sql
  11. conn.execute(sql)
  12. if conn.rowcount > 0:
  13.         for item in conn.fetchall():
  14.                 sql = '''rename table %s.%s to %s.%s''' % (item[0], item[1], item[0], item[1].lower())
  15.                 if item[1].isupper():
  16.                         print sql
  17.                         conn.execute(sql)

  18. time.sleep(0.5)

  19. conn.close()
  20. db.close()


请使用浏览器的分享功能分享到微信等