今天在linux上跑一个系统 发现数据库报错,说找不到表 问题是,我已经建立了表呀. 我把报错的那个表 复制到命令行 运行一下. 发现是大小写的问题. 那问题就简单了. 网上百度可以知道 打开/etc/my.cnf文件 如下 # # This group is read both both by the client and the server # use it for options that affect everything # [client-server] # # include a…
Mysql 下面是mysql获取数据库所有表的语句 select table_name from information_schema.TABLES where TABLE_SCHEMA='Username' information_schema这个是数据系统用来保存数据表的总表 select table_name tableName, engine, table_comment tableComment, create_time createTime from information_sche…