如何查询SqlServer和MySql数据库中某个数据库下面所有的视图信息和存储过程的信息,在java中操作
发布网友
发布时间:2022-04-08 08:56
我来回答
共2个回答
热心网友
时间:2022-04-08 10:25
视图
SQL Server
select
a.name AS ViewName,
c.text AS CreateViewSQL
from
sys.views a
LEFT OUTER JOIN
dbo.syscomments c ON a.object_id = c.id
order by
a.name
MySQL
是否是视图 通过 table_type 字段是否为 VIEW 来区分的。
SELECT
table_name AS `视图名`,
table_type AS `类型`,
engine AS `引擎`,
table_comment AS `备注`
FROM
information_schema.tables
WHERE
table_schema = 'test' AND table_type = 'VIEW'
ORDER BY
table_name DESC;
存储过程
SQL Server
select
pro.name AS ProcereName,
c.text AS CreateProcereSQL
from
sys.proceres pro LEFT OUTER JOIN
dbo.syscomments c ON pro.object_id = c.id
MySQL 里面,查存储过程的,我这里暂时没有。
热心网友
时间:2022-04-08 11:43
select * from all_objects where object_type = 'VIEW';
--这个SQL能查出数据库下面所有的视图信息
select * from all_objects where object_type = 'PROCEDURE';
--这个SQL能查出数据库下面所有的存储过程的信息追问在SqlServer数据库和MySql数据库中也是这样?????????