sql查看数据库环境及一些参数 select parent_obj from sysobjects where name='FK_Student_banjiID' --根据外键名得到外表id select * from sysobjects where xtype='U' --当前数据库下的所有表信息 select * from sysforeignkeys --有主外键关系的表 rkeyid列为被引用的表(主表) fkeyid列为外键表(外表) 根据外键得到主表名: select name f…
使用show status可以查看数据库性能的参数,基本语法:show status like 'value'; 例如: show status like 'Connections';/*连接mysql服务器的次数*/ show status like 'Uptime';/*mysql服务器的上线时间*/ show status like 'slow_queries';/*慢查询的次数*/ show status like 'com_select';/*查询操作的次数*/ show status…