Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

http://docs.oracle.com/cd/B19306_01/server.102/b14200/functions001.htm#sthref964

Analytic functions compute an aggregate value based on a group of rows. They differ from aggregate functions in that they return multiple rows for each group.

share|improve this question
If this is like Windowing Functions, then no: en.wikipedia.org/wiki/… – ripper234 Aug 4 '12 at 6:51
2  
If you want windowing functions in an open source database you will need to use PostgreSQL. – a_horse_with_no_name Aug 4 '12 at 8:13

2 Answers

up vote 4 down vote accepted

NO, it is one of the main lack of MySQL, compared to others DBMS like MSSQL, Oracle, PostgreSQL. I strongly doubt to see Window Functions in MySQL in any future, especially after Oracle acquisition of MySQL ...

share|improve this answer
MySQL also lacks recursive queries – a_horse_with_no_name Aug 4 '12 at 8:45

There is a commercial product for SQL Server that provides in-database analytic functions and it can be connected to an oracle or MySQL database via 'linked servers'/odbc - here is an article describing it: http://westclintech.com/Blog/tabid/132/EntryId/88/Using-XLeratorDB-with-MySQL-and-other-RDBMS-s.aspx

This requires having a Windows o/s and SQL Server 2005 or later (which the Express version is free)

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.