y));
The %s format string is not a part of the C language proper, but rather a part
of several of the C library functions (printf, fprintf, sprintf, etc).
The reason to use snprintf versus sprintf is to avoid overwriting memory if the
query string becomes too long. If
On Tue, 18 Jun 2002 20:04:54 -0300
César Aracena wrote:
> Hi all.
>
>
>
> Is there any possible way for me to arrange a SELECT query made to MySQL
> in to orders? Like __. ORDER BY lastname THEN BY firstname?
SELECT * FROM tablename ORDER BY lastname, firstname;
--
Cli