vendredi 19 février 2016

Sqlite EXCEPT and ALTER TABLE

I have 2 tables with same structure. these 2 tables are monthly snapshots: table1=january table2=february

As i want to compare rows added and removed, i use EXCEPT twice: to get rows added:

select * from table1 
EXCEPT
select * from table2

to get rows removed:

select * from table2 
EXCEPT
select * from table1

in two cases i want to ADD COLUMN the results table with Month/Add-Remove stamp and then UNION those two resulting tables.

i don't how to make it using sqlitebrowser. Could anybody help me? thx

Aucun commentaire:

Enregistrer un commentaire