欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页  >  数据库

mysql操作时遇到的小问题_MySQL

程序员文章站 2024-01-26 13:14:58
...
mysql数据库在程序中执行sql语句时,或者在执行sql时,数据库表可能会有一些特殊的字符,比如说#,.等,这样在执行时可能会遇到问题如以下的表名,backup_2014.2.22, 这个表在查询时会有问题因为存在这个.的缘故,会报错table_name=“backup_2014.2.22"如python中写self.db.query("show create table %s" % table_name)[0]会报错(1064, "You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near '.22' at line 1”)Traceback (most recent call last): File "/Users/xuxiaodong/work/db_table_to_Wiki.py", line 120, in main(sys.argv) File "/Users/xuxiaodong/work/db_table_to_Wiki.py", line 117, in main db.get_db_tables_to_wiki() File "/Users/xuxiaodong/work/db_table_to_Wiki.py", line 31, in get_db_tables_to_wiki create_table = self.db.query("show create table %s" % table_name)[0]TypeError: 'NoneType' object has no attribute ‘__getitem__' 从报的错误来看是因为sql语句的语法错误,而原因就是将带有特殊字符的表名直接作为字符串进行sql时会有语法错误 而在sql语句中字段和表名应该是有`table`,这两个符号来包括,就可以了self.db.query("show create table `%s" % table_name + "`”) 这是sql语句中的标准写法,养成这个习惯比较好