Skip to content

Instantly share code, notes, and snippets.

View mohanreddy7892's full-sized avatar
🏠
Working from home

unix notes mohanreddy7892

🏠
Working from home
View GitHub Profile
document.querySelectorAll('div').forEach(div => {
if (div.innerText.trim() === '>') {
div.click();
}
});
WITH month_info AS (
SELECT
TO_CHAR(LAST_DAY(ADD_MONTHS(SYSDATE, -2)), 'YYYY-MM') AS prev_month,
TO_CHAR(LAST_DAY(ADD_MONTHS(SYSDATE, -1)), 'YYYY-MM') AS curr_month
),