简体   繁体   中英

Unable to fetch the column name in DB2

在此处输入图片说明

When I am using an expression as a column(without alias) in my query, the driver returns the column number, instead of the name

How can I fetch the column names, instead of column numbers?

在此处输入图片说明

If you want to retrieve columns by name, then give that column a name using AS .

Change your query to:

select sum(a.salary) as total_salary, a.id from q.staff a group by a.id

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM