improving sort order in sql editor code completion
a
anonymous
started a topic
over 15 years ago
[This topic is migrated from our old forums. The original author name has been removed]
it would be nice to have an option to automatically order the completion list in sql editor. if i try to join 2 tables it would be great if referenced tables are listed before other tables and referenced columns before others in defined order.
defined tables:
+tableA (id, name)+
+tableB (id, referenceTableC)+
+tableC (id, name)+
if i try a
+select * from tableB join+
the popup list should be
+tableC+
+tableA+
and
+select * from tableB join tableC on+
the column popup should be
+referenceTableC+
+id+
and so on. that would be a great help for me.
thx thomas
1 Comment
Roger Bjärevall
said
over 15 years ago
[This reply is migrated from our old forums.]
Re: improving sort order in sql editor code completion
Thomas,
Good idea. I'll add this as an RFE (request for enhancement).
Best Regards
Roger
anonymous