SQL Prompt Feature Suggestions
Welcome to the SQL Prompt feature suggestion list. Find out more information about SQL Prompt at http://www.red-gate.com/products/sql-development/sql-prompt/.
If you have any questions, need help or have found a bug in SQL Prompt, please visit the forums at http://www.red-gate.com/messageboard/viewforum.php?f=137.
-
Add $PASTE$ to paste current clipboard text into a snippet
It would be useful to write a snippet that you could paste the contents of the clipboard into. The contents might contain the name of an object (table, view) that needs to be entered based on the context.
52 votes -
Don't expand wildcard within EXISTS
Don't expand wildcard occurrences within EXISTS clause.
WHERE EXISTS(SELECT * FROM tab1)
should not expand to
WHERE EXISTS(SELECT col1, col2, col3 FROM tab1)5 votes -
Enhance tab to expand wildcards when using aliased tables
Further to the idea presented here http://redgate.uservoice.com/forums/94413-sql-prompt-feature-suggestions/suggestions/1712871-enhance-press-tab-to-expand
I would like to see a further enhancement
If I have a query such as
select *
from table t1
join table2 t2 on t1.id = t2.idand I tab-expand the *, then the columns will be prefixed with the alias name, however if I have limited the query to
select t2.*
from table t1
join table2 t2 on t1.id = t2.idand tab-expand, then SQL Prompt doesn't use the alias, it uses the tablename. I want to see the alias.
2 votes
- Don't see your idea?