Jump to content

[SOLVED] SQL groupings


komquat

Recommended Posts

I have a DB that has 100 records.  All of them are file names.  I would like to group them alphabetically.  How can I do this?

 

Output example:

 

A

-------------------

Andy.gif

Apple.jpg

Azurite.pdf

 

B

-------------------

Bob.xls

 

 

And so on.

 

Help is greatly appreciated.

 

 

Link to comment
https://forums.phpfreaks.com/topic/47886-solved-sql-groupings/
Share on other sites

In the GROUP BY, can you select DESC or ASC, similar to the SORT BY?

 

If I have a file name, how would I only leave the first letter of that filename

 

example

 

$file = sample.doc;
$file_first_letter = ??????;

 

Is there something that will give me the first letter of the value in the variable I have?

 

Thanks again

Link to comment
https://forums.phpfreaks.com/topic/47886-solved-sql-groupings/#findComment-234035
Share on other sites

Archived

This topic is now archived and is closed to further replies.

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.