show/hide this revision's text 2 Edit2

This looks to me like a case where over-zealous use of surrogate keys is slowing you down. If the tables were:

  • hosts :

    • name (VARCHAR 100) PRIMARY KEY
  • paths :

    • name (VARCHAR 100) PRIMARY KEY
  • urls :

    • host (VARCHAR 100) PRIMARY KEY <--- links to hosts.name
    • path (VARCHAR 100) PRIMARY KEY <--- links to paths.name

Then your query would require no joins at all:

SELECT CONCAT(U.host, U.path) FROM urls U;

True, table URLS would occupy more disk space - but does that matter?

EDIT: On second thoughts, what is the point of that PATHS table anyway? How often do different hosts share the same paths?

Why not:

  • hosts :

    • name (VARCHAR 100) PRIMARY KEY
  • urls :

    • host (VARCHAR 100) PRIMARY KEY <--- links to hosts.name
    • path (VARCHAR 100) PRIMARY KEY <--- no link to anywhere

EDIT2: Or if you really need the surrogate key for hosts:

  • hosts :

    • id integer PRIMARY KEY
    • name (VARCHAR 100)
  • urls :

    • host integer PRIMARY KEY <--- links to hosts.name
    • path (VARCHAR 100) PRIMARY KEY <--- no link to anywhere

    SELECT CONCAT(H.name, U.path) FROM urls U JOIN hosts H ON H.id = U.host;

show/hide this revision's text 1

This looks to me like a case where over-zealous use of surrogate keys is slowing you down. If the tables were:

  • hosts :

    • name (VARCHAR 100) PRIMARY KEY
  • paths :

    • name (VARCHAR 100) PRIMARY KEY
  • urls :

    • host (VARCHAR 100) PRIMARY KEY <--- links to hosts.name
    • path (VARCHAR 100) PRIMARY KEY <--- links to paths.name

Then your query would require no joins at all:

SELECT CONCAT(U.host, U.path) FROM urls U;

True, table URLS would occupy more disk space - but does that matter?

EDIT: On second thoughts, what is the point of that PATHS table anyway? How often do different hosts share the same paths?

Why not:

  • hosts :

    • name (VARCHAR 100) PRIMARY KEY
  • urls :

    • host (VARCHAR 100) PRIMARY KEY <--- links to hosts.name
    • path (VARCHAR 100) PRIMARY KEY <--- no link to anywhere