I think that this might give you an idea of where to head, it's a bit ugly and makes use of aliasing your tables. I've given your table the name of 'test'.
SELECT a.zip, a.create, b.create, (b.create - a.create) as no_days
(this gives you your fields)
from test a, test b
(by aliasing your table...