MySQL批量轉換表名為小寫(Python指令碼)

feelpurple發表於2018-03-23


  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()


來自 “ ITPUB部落格 ” ,連結:http://blog.itpub.net/26506993/viewspace-2152163/,如需轉載,請註明出處,否則將追究法律責任。

相關文章