On Jul 5, 2010, at 10:04 AM, Michael Satterwhite wrote:
>> [...snip...]
>> On 5 July 2010 03:35, Michael Satterwhite wrote:
>>> On Sunday, July 04, 2010 06:36:00 pm you wrote:
>>> [...snip...]
>>> I still can't connect via
>>> mysql -h photon -u michael -p??
On my home computer I enter
You might get closer to what you want if you put your command in a text file
and run it from the command line.
On a Mac OS X, I put a similar command:
select count(*) from testTable;
into a small text file:
testCount.txt
and ran this command from the Terminal:
mysql -u username -pp
years
> of daily sales data.
> Maybe I'm not stating my question correctly...h
> Thanks for responding though, greatly appreciated.
> Keith
> On Wed, 2010-05-12 at 19:46 -0500, Bob Cole wrote:
>> Keith:
>> Does this work?
>> SELECT products_date_a
Keith:
Does this work?
SELECT products_date_available, COUNT(products_quantity)
FROM products
WHERE products_quantity > 0
GROUP BY products_date_available
Hope this helps,
Bob
On May 12, 2010, at 3:06 PM, Keith Clark wrote:
> On Wed, 2010-05-12 at 10:13 -0400, Keith Clark wrot