Ответ 1
String getColumnLabel(int column) throws SQLException;
Если SQL AS
не указан, значение возвращается из getColumnLabel
будет таким же, как значение, возвращаемое getColumnName
метод.
Пример:
select id as user_no from users
- getColumnLabel вернет 'user_no'
- getColumnName вернул бы 'id'