def get_name(self, id):
try:
db = shelve.open("file.shv")
return db[id].get('file_path')
finally:
db.close()
insert into destination_table (field_one, field_two, field_three) select field_one, field_two, NULL from source_table;