logical-grouping

Grouping Files in Project Explorer in Eclipse

Hi, I am newbie to Eclipse, I am planning to use it for AVR development with WinAVR and gcc. The feature I am looking for is the grouping of different files in the project, like all headers together, all source files together and all files excluded from the build together etc. I tried AVR Studio from Atmel, it has this grouping feature ...

PHP/MySQL group results by column

Hello, in order to keep as few SQL statements as possible, I want to do select set from MySQL: SELECT * FROM products WHERE category IN (10,120,150,500) ORDER BY category,id; Now, I have list of products in following manner: CATEGORY - product 1 - product 2 CATEGORY 2 - product 37 ... What's the best and most efficent way to pr...