Often times, I ran into constraint violation while using insert statements.
For ex.
INSERT INTO table_1 (col1, col2, ..., col100)
VALUES (val1, val2, ..., val100);
Now, is there a fast way of navigating to the 34th column's value by making this insert statement into more readable form like key-value pairs?
Any help is this regard is much appreciated.