slGrid is an easy to use grid component that can display your PHP tables in an user friendly, good-looking way. It is Ajax-based, allowing for fast user operations like sorting and paging without having to reload the entire web page. Additional features are table editing, export to Excel, and print view
Category:
1. select continent,country,concat("area: ",area," population: ",population) from countries
2. select left(country,1) as lex,country from countries
3. select continent,left(country,1) as lex,concat(country," (",capital,")") from countries
4. select concat(conti.continent," (",FORMAT(sum_pop,0),")") as cont_pop,country,FORMAT(country.population,0) from (select continent,sum(population) as sum_pop from countries group by continent) as conti left join (select continent,country,population from countries) as country on conti.continent=country.continent
Category: