I have a table CREATE TABLE Tasks ( ID INT IDENTITY(1,1) NOT NULL CONSTRAINT PRIMARY KEY PkTasks, ...other fields...
I am working with a dict which is structured like this inside a function: listOfInformation = [{123456789: {\'PokemonId\': \'123456789\', \'PokemonName\': \'Pikachu\', \'PokemonAttack\': \'thunderbo开