Notice
Recent Posts
Recent Comments
Link
«   2025/02   »
1
2 3 4 5 6 7 8
9 10 11 12 13 14 15
16 17 18 19 20 21 22
23 24 25 26 27 28
Archives
Today
Total
관리 메뉴

RUBY

[220608] SQLD _ 11. 데이터베이스 종류 별 SQL 주석 종류, DB관리도구 주석 단축키 본문

자격증/SQL 개발자

[220608] SQLD _ 11. 데이터베이스 종류 별 SQL 주석 종류, DB관리도구 주석 단축키

ruby-jieun 2022. 6. 8. 10:52

 

데이터베이스 종류 별 SQL 주석 종류

 

종류 MySQL Oracle MSSQL MariaDB Sybase IQ Sybase ASE DB2
한 줄 주석
(단순 주석)
#, -- -- -- #, -- --, //, % -- --
여러 줄 주석
(대괄호 주석)
/* comment */ /* comment */ /* comment */ /* comment */ /* comment */ /* comment */ /* comment */

 

데이터베이스 관리도구 별 주석 단축키

 

DB관리도구 HeidiSQL SSMS
DataGrip  DBeaver
단축키 Ctrl + F6 Ctrl + K + C
(2000 : Ctrl + Shift + C)
Ctrl(⌘) + / Ctrl + /
(한 줄 주석)
Ctrl+Shift+ /
(여러 줄 주석)

* SSMS : SQL Server Management Studio(MS SQL Server용 관리 프로그램)

Comments