python和mysql控制台

时间:2016-06-10 07:54:50

标签: python mysql mysql-python

我想显示mysql表的可创建时间:

我在mysql控制台

中运行它
MariaDB [Restaurant]> select CREATE_TIME from information_schema.tables where table_name = 'mytalbe';

+---------------------+ | CREATE_TIME | +---------------------+ | 2016-06-02 15:38:02 | | NULL | +---------------------+

但是我在python下运行这句话,它出错了:

sql='select CREATE_TIME from information_schema.tables where table_name = %s;'
value=('mytalbe',)
result=cur.execute(sql,value)

它抛出一个异常:

  

警告:无法找到文件:' ./ performance_schema / mytalbe.frm'(错误号码:13)   结果= cur.execute(SQL,值)

如何在mysql中获得正确的结果? 非常感谢!

0 个答案:

没有答案