Oracle 查看sql性能

# ***号部分就是你要查看性能的对应sql
EXPLAIN PLAN FOR ( ******);

SELECT
	*
FROM
	TABLE (dbms_xplan.display);

你可能感兴趣的:(oracle)