I am working on an application that does not have a visible level of access to data, so all SQL statements are simply built-in as strings and executed. I constantly come across very long INSERT statements, where I am trying to figure out which value in the VALUES list matches which column in the list of column names.
I was going to create a small helper application in which I could insert an INSERT statement and show me a list of values mapped to column names for debugging only, and I thought, "Maybe someone else has done this already."
Does anyone know a website where I can simply insert an INSERT statement and show it a table with two columns with column names in the first column and values in the second column?
source
share