Answers for "postgres window function"

SQL
2

how to open postgresql in windows

pg_ctl.exe restart -D "<path upto data>"
Posted by: Guest on February-21-2021
0

windows aggregate functions in postgresql

SELECT depname, empno, salary, avg(salary) OVER (PARTITION BY depname) FROM empsalary;
Posted by: Guest on January-14-2021

Code answers related to "SQL"

Browse Popular Code Answers by Language