Hello,
Can I implement an aggregate function in CC? For example, a MYSQL statement might look like this:
If the "Fields" box in a CC connection represents the SELECT line in the MYSQL query, can I include an aggregate function as shown above and if so, how would it be written in CC?
Hope this is clear. Thanks for your help.
Chris
Can I implement an aggregate function in CC? For example, a MYSQL statement might look like this:
SELECT state_tag
, MAX(date_moved) AS "Date Moved"
, building
, room
, staff
, comments
FROM its_locations
GROUP BY state_tag;
If the "Fields" box in a CC connection represents the SELECT line in the MYSQL query, can I include an aggregate function as shown above and if so, how would it be written in CC?
Hope this is clear. Thanks for your help.
Chris