Databases


Multi-Table Update in MySQL

I think one thing I love about web development is that I'm always learning something new! Even with my database skills, just when I think I “know it all” (HA HA HA), I learn some new trick! This week, I had to write some scripts to move some data around […]


Southern Accents + DBMS Name = Weird Looks

I've long and loud pronounced my love for PostgreSQL as a DBMS, but alas, it appears I can't actually pronounce it correctly.  When I first started using it, I never saw a pronunciation guide for it, and it never really occurred to me to question it. It seemed obvious to […]


MySQL, BOOLEAN, and ColdFusion

I work with both MySQL and PostgreSQL DBMS.  Given the choice, I'll use PostgreSQL over MySQL 99% of the time.  MySQL has its benefits, don't get my wrong, but overall I find PostgreSQL to be the more mature DBMS.  One of my greatest annoyances with MySQL is that it does […]


Database Design: Normalization

Why should a web developer care? A badly designed database is not only a pain to work with, but it can bog down your web server. In a worse case scenario, a bad database design can make your server grind to a halt! Although it may take an initial switch […]


Databases: Intro and Overview

A database is a collection of data organized in a way that makes searching and retrieval relatively easy and more efficient. Adding a database to a site can really help in terms of content management, site freshness, and making a site more “dynamic.” It can also make it much easier […]