I am getting an error in my sql syntax when it comes to using
aggregate functions. In mysql you have to define it. Here is the error
I am getting using the count function.
MySQL][ODBC 3.51 Driver][mysqld-4.0.12-max-debug]You have an error in
your SQL syntax. Check the manual that corresponds to your MySQL
server version for the right syntax to use near 'SELECT Count(Topics.
TopicID) From Topics Where Forums.ForumID =
In the help menu it lists this sql statement as the example.
CREATE [AGGREGATE] FUNCTION function_name RETURNS
{STRING|REAL|INTEGER}
SONAME shared_library_name
Can anyone give me a real example of how they wrote their function?
Where do you enter this information?
Once the function is installed how do I use it in my sql statement?
aggregate functions. In mysql you have to define it. Here is the error
I am getting using the count function.
MySQL][ODBC 3.51 Driver][mysqld-4.0.12-max-debug]You have an error in
your SQL syntax. Check the manual that corresponds to your MySQL
server version for the right syntax to use near 'SELECT Count(Topics.
TopicID) From Topics Where Forums.ForumID =
In the help menu it lists this sql statement as the example.
CREATE [AGGREGATE] FUNCTION function_name RETURNS
{STRING|REAL|INTEGER}
SONAME shared_library_name
Can anyone give me a real example of how they wrote their function?
Where do you enter this information?
Once the function is installed how do I use it in my sql statement?