Dive into the archives.


  • Tutorial - mySQL find duplicate entries

    Here is some quick SQL to find duplicate entries in a SQL or mySQL database:
     
    This will return duplicates in row users from table company…
     
    SELECT users, count(users) as NumOccurances FROM company GROUP BY users HAVING ( COUNT(users) > 1 );
     
    tags: LAMP, mysql, sql, tutorial.

LAMP

This is the archive for LAMP.

FRESH / LATEST POSTS