Comments
1 comment
-
Hi there,Thank you for reaching out about SQL Prompt.I would highly recommend that you input a feature request into our UserVoice: https://redgate.uservoice.com/forums/94413-sql-promptThe development team regularly goes through the UserVoice, and if a feature request gains enough traction, they add it into their backlog.Kind Regards,David KimProduct Support Engineer
Add comment
Please sign in to leave a comment.
It would be nice to click on context menu and transform T-SQL statement into its dynamic equivalent.
For example the following T-SQL statement
DECLARE @BusinessEntityID tinyint = 101
SELECT BusinessEntityID, NationalIDNumber, JobTitle, LoginID FROM AdventureWorks2012.HumanResources.Employee WHERE BusinessEntityID = @BusinessEntityID
becomes
SET @IntVariable = 101
EXECUTE sp_executesql @SQLString, @ParmDefinition, @BusinessEntityID = @IntVariable;