-
Recent Posts
Recent Comments
- Craig Reasbeck on PHP Error Reporting Settings
- capt.PR on PHP Error Reporting Settings
- Insane in the Main Frame » Blog Archive » Zend Framework: SQL Queries auflisten on Logging SQL Queries with Firebug’s Console using Zend Framwork Db Profiler
- Ian Lewis on Custom Form Layout with Zend Form Decorator ViewScript
- Ian Lewis on Custom Form Layout with Zend Form Decorator ViewScript
Categories
Blogroll
- Google Analytics
- Google Analytics Blog
- Google Analytics Videos
- Google Webmaster Blog
- Google Webmaster Central
- Google Webmaster Videos
- Making Good Software
- Matthew Weier O'Phinney
- MySQL.com
- Pádraic Brady
- PHP CSV Data Feed Library
- PHP Data Feed File Parser Library
- PHP.net
- Rob Allen's DevNotes
- Wordpress Theme Anatomy
- Wordpress Theme Development
- YinYang PHP Library
- ZF – Documentation
- ZF – Survive The Deep End
Archives
Category Archives: MySQL
MySQL: LIMIT the values in the GROUP_CONCAT Function
One limitation of the GROUP_CONCAT function is that you can’t directly limit it’s output. Say for example you have an order table and a products table and you wanted to list all the orders for a specific product, you could … Continue reading
Posted in MySQL
4 Comments
Finding Duplicate Rows in MySQL
I sometimes do some work on an e-commerce website and I needed to find a way to find duplicate products in their database. I didn’t want to use PHP as this was just unnecessary as I just wanted a simple … Continue reading