SQLite - Verbindung von zwei Abfragen

  • Hallo zusammen,

    wer kann mir helfen die beiden getrennten Abfragen, auf 'places.sqlite' von Firefox, auf eine einzelne zusammen zu bauen?

    a)
    SELECT a.url, a.title, b.visit_date from moz_places as a join moz_historyvisits b on a.id = b.place_id order by b.visit_date asc

    = ergibt die Historie mit PRTime Zeitstempel.

    b)
    SELECT datetime(moz_historyvisits.visit_date/1000000,'unixepoch'), moz_places.url
    FROM moz_places, moz_historyvisits
    WHERE moz_places.id = moz_historyvisits.place_id

    = wandelt die PRTime über CTime in das lesbare 'Datetime' um.

    Vielen Dank für jede Lösung.

    Liebe Grüße,
    Petra

  • meinste so?

    SQL
    SELECT 
        `moz_places`.`url`, `moz_places`.`title`, datetime(`moz_historyvisits`.`visit_date` / 1000000, 'unixepoch')
    FROM
        `moz_places`, `moz_historyvisits`
    WHERE
        `moz_places`.`id` = `moz_historyvisits`.`place_id`
    ORDER BY
        `moz_historyvisits`.`visit_date` ASC

    Gruß crAzywuLf :D