[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 ?
--
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
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"