unrecognized token: "772762303ORDER"

Solution 1:

"ORDER BY Id" doesn't has meaning here, so use

for row in c.execute("SELECT * FROM Table where Id=?", [str(id)]):
    print(row)

Solution 2:

space needed

for row in c.execute("SELECT * FROM Table where Id="+str(id)+" ORDER BY id"):
    print(row)