Re: MySQL manual for Palm OS

2002-07-27 Thread Tim Luoma
[EMAIL PROTECTED] wrote: > Would it be possible to have a MySQL manual (documentation) in .pdb or > .pdf (for palm) so that it could be read on handhelds? It's a nice > pocket reference. Something like http://www.mysql.com/Downloads/Manual/manual.pdf ? --

Re: pulling information from 2 tables based on information from first<< SOLVED

2002-07-15 Thread Tim Luoma
1) Had to change column types to match (names.uid and specialdays.uid were different types, due to my inexperience with DB setup) 2) Once I had done that, this did exactly what I wanted: SELECT sd.day, sd.month, sd.who, names.uid, names.email FROM specialdays as sd INNER JOIN names ON names.uid

pulling information from 2 tables based on information from firstselect

2002-07-15 Thread Tim Luoma
I'm trying to write my first shell script using MySQL. I've checked Welling & Thomson and Google but I think I'm searching the wrong keywords or something. The shell script will be non-interactive, but interactively this is what I would do: mysql> select * from specialdays where month="6"