Hi John,
I'm a beginner as you might have recognized. :-) I'm writnig code but I don't know how to refer to a MySQL query and a MySQL function at the same time.
For example, I can connect to a MySQL server then make a query, display data from a table in which there is a column of timestamp type.
But I don't have the foggiest idea how to display the data in the traditional date form.
Eg.: There is a function named date_format(date,format), but how to use it in this case?
select * from <tablename> display date_format(<tablename.field>,%Y,"-",%m,"",%d," ",%T) ;
The syntax is not good, but is the idea? Does it work in this way?
Thanks, Akos