Does anyone know how to get the query of a search ran so I can use it in a summary page to get the count of summarized records?
Usually if you turn on debug it is at the top of the screen
looks like this:
(mysqlt): select count(*), sum(cld_orders) as sum_cld_orders, sum(cld_shipped) as sum_cld_shipped, sum(cld_backorder) as sum_cld_backorder, sum(cld_total) as sum_cld_total from testtable where user_id = ‘123’ and order_date between ‘2016-08-01’ and ‘2017-07-31’
I would think that is a variable somewhere but can determine which one…
Kevin