I am using sqlite3 in python 3 I want to get only the updated data from the database. what I mean by that can be explained as follows: the database already has 2 rows of data and I add 2 more rows of data. How can I read only the updated rows instead of total rows
Note: indexing may not help here because the no of rows updating will change.
def read_all():
        cur = con.cursor()
        cur.execute("SELECT * FROM CVT")
        rows = cur.fetchall()
        # print(rows[-1])
        assert cur.rowcount == len(rows)
        lastrowids = range(cur.lastrowid - cur.rowcount + 1, cur.lastrowid + 1)
        print(lastrowids)
 
    