显示所有的数据库:show databases 显示一个数据库所有表用:show tables from DatabaseName SELECT table_name FROM information_schema.tables WHERE table_schema='DatabaseName' AND table_type='base table'; 显示一个数据库中的所有视图: show table status from DatabaseName where comment='view';…
今天在学习mybatis框架的时候遇到了一个问题:查询用户表的时候报 Cannot convert value '0000-00-00 00:00:00' from column 10 to TIMESTAMP 查看自己数据库中有一条数据: 意思是:无法将值“0000-00-00 00:00:00”转换为时间戳. 解决办法:zeroDateTimeBehavior=convertToNull…