Reputation:
I would like to comment out queries with a keyboard shortcut, like so
SELECT *
FROM Academics
WHERE Academic_id = 1
To become
--SELECT *
--FROM Academics
--WHERE Academic_id = 1
Upvotes: 22
Views: 100467
Reputation: 41
You are using SSMS, then you can go to:
1).use for single line
--
shortcut CTRL + K, CTRL + C.
2).use for multiline for /*
here your selected text
*/
Thanks
Upvotes: 1
Reputation: 49
You are using SSMS, you can go to:
Tools - Options - Keyboard JUST change keyboard mapping scheme to Vs Code
then Ctrl + / works
Upvotes: 4
Reputation: 181
Select SQL code
SELECT TOP 3 * FROM CUSTOMER WHERE Customerid ='4de3092d03b742f3b2b88cf6fe0b09d0'
Press CTRL + / (or CMD + / on Mac) on the keyboard
Code will be commented
--SELECT TOP 3 * --FROM CUSTOMER --WHERE Customerid ='4de3092d03b742f3b2b88cf6fe0b09d0'
If you need to uncomment it, you need to mark commented code and press the same keyboard combination CTRL + / (or CMD + / on Mac) on the keyboard Code will become uncommented again:
SELECT TOP 3 * FROM CUSTOMER WHERE Customerid ='4de3092d03b742f3b2b88cf6fe0b09d0'
Upvotes: 16
Reputation: 37
If you are using SSMS, you can go to:
Tools
- Options
- Keyboard
(under Environment)
Edit.CommentSelection
Text Editor
' under "Use new shortcut in:"Ctrl + /
) --> Assign
--> Click OkayIf you want to uncomment then choose Edit.UncommentSelection and follow the step above, but it will need to be assigned to a different key other than Ctrl + /
, may be use Ctrl+'
Step to change CommentSelection shortcut key
Upvotes: 2
Reputation: 393
/*
SELECT *
FROM Academics
WHERE Academic_id = 1
*/
Same as:
--SELECT *
--FROM Academics
--WHERE Academic_id = 1
If you're working with SSMS, use CTRL + K, then press C for "comment" or U for "uncomment"
Upvotes: 23