Install Apache, MySQL, PHP and Perl in one shot using xampp.

Tuesday, July 22nd, 2008

In the past this software was called LAMPP but to avoid misconceptions we renamed it to »XAMPP for Linux«. So if you are seeking for LAMPP you're on the right track. ;) URL: http://www.apachefriends.org/en/xampp-linux.html

What is the difference between inner join and outer join?

Thursday, June 12th, 2008

Inner join displays rows from table where the data is available in both the tables, where in outer join we can configure it to bring out rows from one table where the data is missing in other table for the corresponding rows. Inner join Say you have one table of CUSTOMERS and ...

What is the query to get the number of “names” from a table that is occuring more than 10 times.

Thursday, June 12th, 2008

SELECT name FROM table_name WHERE COUNT(name) > 10