Feature request: Add intention for naming columns when sum(), count() is used
It's common to run sum() or count() on a column and then need to name it with that same column name. Is it possible to create a new intention that suggests this automatically? This obviates the need for one of my few common copy-paste actions in DataGrip.
For instance, I'd like to create "count_transaction_id" in the statement below with a suggested intention.
select count(transaction_id) count_transaction_id from transactions;
请先登录再写评论。
I also would like this feature.