ORDER BY

ORDER BY

am 19.10.2006 01:58:14 von Ron Piggott

--=-Hpa/wiX0ujSUZWX5Prwz
Content-Type: text/plain
Content-Transfer-Encoding: 7bit

Is it possible to do an ORDER BY column_a column_b ASC ? IE Can you
specify two columns to cause the output to be displayed in a specific
order? Ron

--=-Hpa/wiX0ujSUZWX5Prwz--

RE: ORDER BY

am 19.10.2006 02:01:37 von MIGUEL ANTONIO GUIRAO AGUILAR

Yes!

Just separate your columns with commas!
Check out the proper sintax!!

-----Original Message-----
From: Ron Piggott (PHP) [mailto:ron.php@actsministries.org]
Sent: MiƩrcoles, 18 de Octubre de 2006 06:58 p.m.
To: PHP DB
Subject: [PHP-DB] ORDER BY


Is it possible to do an ORDER BY column_a column_b ASC ? IE Can you
specify two columns to cause the output to be displayed in a specific
order? Ron


Este mensaje es exclusivamente para el uso de la persona o entidad a quien esta dirigido; contiene informacion estrictamente confidencial y legalmente protegida, cuya divulgacion es sancionada por la ley. Si el lector de este mensaje no es a quien esta dirigido, ni se trata del empleado o agente responsable de esta informacion, se le notifica por medio del presente, que su reproduccion y distribucion, esta estrictamente prohibida. Si Usted recibio este comunicado por error, favor de notificarlo inmediatamente al remitente y destruir el mensaje. Todas las opiniones contenidas en este mail son propias del autor del mensaje y no necesariamente coinciden con las de Radiomovil Dipsa, S.A. de C.V. o alguna de sus empresas controladas, controladoras, afiliadas y subsidiarias. Este mensaje intencionalmente no contiene acentos.

This message is for the sole use of the person or entity to whom it is being sent. Therefore, it contains strictly confidential and legally protected material whose disclosure is subject to penalty by law. If the person reading this message is not the one to whom it is being sent and/or is not an employee or the responsible agent for this information, this person is herein notified that any unauthorized dissemination, distribution or copying of the materials included in this facsimile is strictly prohibited. If you received this document by mistake please notify immediately to the subscriber and destroy the message. Any opinions contained in this e-mail are those of the author of the message and do not necessarily coincide with those of Radiomovil Dipsa, S.A. de C.V. or any of its control, controlled, affiliates and subsidiaries companies. No part of this message or attachments may b
e used or reproduced in any manner whatsoever.

--
PHP Database Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php

Re: ORDER BY

am 19.10.2006 02:09:25 von Chris

Ron Piggott (PHP) wrote:
> Is it possible to do an ORDER BY column_a column_b ASC ? IE Can you
> specify two columns to cause the output to be displayed in a specific
> order? Ron
>

Yes (a quick search would have told you this too).

It's best to specify the order for each one:

order by column_a asc, column_b asc;

or

order by column_a asc, column_b desc;

for example.

--
Postgresql & php tutorials
http://www.designmagick.com/

--
PHP Database Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php

Using BLOBs

am 22.12.2006 16:09:25 von MIGUEL ANTONIO GUIRAO AGUILAR

Hi!!

I'm thinking abou to store MP3 files and PDF files in BLOB fields in a a
table, Is this a best practice in MySQL?
Or should I just store a reference to a file stored some where in a file
system?

I want to store sermons and preachings, both a PDF and MP3 for reading and
listening on a web site!

Best Regards,

Miguel Guirao



Este mensaje es exclusivamente para el uso de la persona o entidad a quien esta dirigido; contiene informacion estrictamente confidencial y legalmente protegida, cuya divulgacion es sancionada por la ley. Si el lector de este mensaje no es a quien esta dirigido, ni se trata del empleado o agente responsable de esta informacion, se le notifica por medio del presente, que su reproduccion y distribucion, esta estrictamente prohibida. Si Usted recibio este comunicado por error, favor de notificarlo inmediatamente al remitente y destruir el mensaje. Todas las opiniones contenidas en este mail son propias del autor del mensaje y no necesariamente coinciden con las de Radiomovil Dipsa, S.A. de C.V. o alguna de sus empresas controladas, controladoras, afiliadas y subsidiarias. Este mensaje intencionalmente no contiene acentos.

This message is for the sole use of the person or entity to whom it is being sent. Therefore, it contains strictly confidential and legally protected material whose disclosure is subject to penalty by law. If the person reading this message is not the one to whom it is being sent and/or is not an employee or the responsible agent for this information, this person is herein notified that any unauthorized dissemination, distribution or copying of the materials included in this facsimile is strictly prohibited. If you received this document by mistake please notify immediately to the subscriber and destroy the message. Any opinions contained in this e-mail are those of the author of the message and do not necessarily coincide with those of Radiomovil Dipsa, S.A. de C.V. or any of its control, controlled, affiliates and subsidiaries companies. No part of this message or attachments may b
e used or reproduced in any manner whatsoever.

--
PHP Database Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php

Re: Using BLOBs

am 22.12.2006 18:45:50 von Steven Cruz

Hello;

I do not think this is best with any database. Simple put you are=20
large chucks of data that you can not do anything with. On access them,=20
they only slow down the server through put. What I prefer to do is store =

the location in the database, and let the web server or front end get it =

directly.


Steven Cruz.


Miguel Guirao wrote:

>Hi!!
>
>I'm thinking abou to store MP3 files and PDF files in BLOB fields in a a=

>table, Is this a best practice in MySQL?
>Or should I just store a reference to a file stored some where in a file=

>system?
>
>I want to store sermons and preachings, both a PDF and MP3 for reading a=
nd
>listening on a web site!
>
>Best Regards,
>
>Miguel Guirao
>
>
>
>Este mensaje es exclusivamente para el uso de la persona o entidad a qui=
en esta dirigido; contiene informacion estrictamente confidencial y legal=
mente protegida, cuya divulgacion es sancionada por la ley. Si el lector =
de este mensaje no es a quien esta dirigido, ni se trata del empleado o a=
gente responsable de esta informacion, se le notifica por medio del prese=
nte, que su reproduccion y distribucion, esta estrictamente prohibida. Si=
Usted recibio este comunicado por error, favor de notificarlo inmediatam=
ente al remitente y destruir el mensaje. Todas las opiniones contenidas e=
n este mail son propias del autor del mensaje y no necesariamente coincid=
en con las de Radiomovil Dipsa, S.A. de C.V. o alguna de sus empresas con=
troladas, controladoras, afiliadas y subsidiarias. Este mensaje intencion=
almente no contiene acentos.
>
>This message is for the sole use of the person or entity to whom it is b=
eing sent. Therefore, it contains strictly confidential and legally prot=
ected material whose disclosure is subject to penalty by law. If the per=
son reading this message is not the one to whom it is being sent and/or i=
s not an employee or the responsible agent for this information, this per=
son is herein notified that any unauthorized dissemination, distribution =
or copying of the materials included in this facsimile is strictly prohib=
ited. If you received this document by mistake please notify immediatel=
y to the subscriber and destroy the message. Any opinions contained in th=
is e-mail are those of the author of the message and do not necessarily c=
oincide with those of Radiomovil Dipsa, S.A. de C.V. or any of its contro=
l, controlled, affiliates and subsidiaries companies. No part of this mes=
sage or attachments may be used or reproduced in any manner whatsoever.
>
> =20
>

--
PHP Database Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php

RE: Using BLOBs

am 22.12.2006 20:54:26 von Bastien Koert

While storin them in the db is acceptable...I have found that the amount of
data to be stored greatly affects the system...therefore I generally do not
store the items in the tables, but provide a reference pointer to those
items out on the filesystem...
Bastien


>From: Miguel Guirao
>To: PHP DB
>Subject: [PHP-DB] Using BLOBs
>Date: Fri, 22 Dec 2006 09:09:25 -0600
>
>
>
>Hi!!
>
>I'm thinking abou to store MP3 files and PDF files in BLOB fields in a a
>table, Is this a best practice in MySQL?
>Or should I just store a reference to a file stored some where in a file
>system?
>
>I want to store sermons and preachings, both a PDF and MP3 for reading and
>listening on a web site!
>
>Best Regards,
>
>Miguel Guirao
>
>
>
>Este mensaje es exclusivamente para el uso de la persona o entidad a quien
>esta dirigido; contiene informacion estrictamente confidencial y legalmente
>protegida, cuya divulgacion es sancionada por la ley. Si el lector de este
>mensaje no es a quien esta dirigido, ni se trata del empleado o agente
>responsable de esta informacion, se le notifica por medio del presente, que
>su reproduccion y distribucion, esta estrictamente prohibida. Si Usted
>recibio este comunicado por error, favor de notificarlo inmediatamente al
>remitente y destruir el mensaje. Todas las opiniones contenidas en este
>mail son propias del autor del mensaje y no necesariamente coinciden con
>las de Radiomovil Dipsa, S.A. de C.V. o alguna de sus empresas controladas,
>controladoras, afiliadas y subsidiarias. Este mensaje intencionalmente no
>contiene acentos.
>
>This message is for the sole use of the person or entity to whom it is
>being sent. Therefore, it contains strictly confidential and legally
>protected material whose disclosure is subject to penalty by law. If the
>person reading this message is not the one to whom it is being sent and/or
>is not an employee or the responsible agent for this information, this
>person is herein notified that any unauthorized dissemination, distribution
>or copying of the materials included in this facsimile is strictly
>prohibited. If you received this document by mistake please notify
>immediately to the subscriber and destroy the message. Any opinions
>contained in this e-mail are those of the author of the message and do not
>necessarily coincide with those of Radiomovil Dipsa, S.A. de C.V. or any of
>its control, controlled, affiliates and subsidiaries companies. No part of
>this message or attachments may be used or reproduced in any manner
>whatsoever.
>
>--
>PHP Database Mailing List (http://www.php.net/)
>To unsubscribe, visit: http://www.php.net/unsub.php
>

____________________________________________________________ _____
Off to school, going on a trip, or moving? Windows Live (MSN) Messenger lets
you stay in touch with friends and family wherever you go. Click here to
find out how to sign up! http://www.telusmobility.com/msnxbox/

--
PHP Database Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php