Other News

Community

Inner Joins (Equijoins)

(Mike Chapple) Inner joins (also known as equijoins) are used to contain information from a combination of two or more tables. The join condition determines which records are paired together and is specified in the WHERE clause. For example, let’s create a list of driver/vehicle match-ups where bo

Community

Database Design (Sample Chapter)

(Michael Kofler) This chapter discusses the fundamentals of relational databases, collects the varieties of data and tables available under MySQL, offers concrete examples of MySQL database structures, shows how indexes enable more efficient table access, and, finally, offers enlightenment on concr

Community

SELECT DISTINCT: A SQL Case Study

(Tom Copeland) There is an understanding in the database world that using a "SELECT DISTINCT" SQL query is not a good idea, because it is essentially getting duplicate rows out of the database and then discarding them. Usually it is better to rearrange the "WHERE" clause in the query to only get the