mySQL Super-tip! Use LI...

Awesome, it seems that mySQL now supports the OFFSET clause.
This is very useful for paginating your SQL statements.

The following will return the first 10 entries of your select statement:
“SELECT field FROM table LIMIT 10″
This, on the otherhand, will OFFSET your result by 10, selecting your entries #10-20:
“SELECT field FROM table LIMIT 10 OFFSET 10″
Here’s an [...]

A MySQL query to find &...

Help! I need to replace some words with something else in my database.

How to: Remove those na...

Help! I’ve pasted some text from Microsoft Word and saved it to my SQL database! Now whenever I output my text there’s a bunch of diamonds with a question mark symbols now appearing!

Super Tool: (Probably) ...

A great IDE/editor to complement SQLite’s small footprint.