In case you have your own slow SQL query, you can optimize it automatically here.
For the query above, the following recommendations will be helpful as part of the SQL tuning process.
You'll find 3 sections below:
SELECT
C_ID,
A_ID
FROM
(SELECT
M_TABLE.rownum rn,
M_TABLE.C_ID,
M_TABLE.A_ID
FROM
M_TABLE
WHERE
M_TABLE.rownum < (
(
:1 * :2
) + 1
))
WHERE
rn >= (
(
(
:1 - 1
) * :2
) + 1
)