📄 comments.sql
字号:
---- Comments--SELECT 'trailing' AS first; -- trailing single lineSELECT /* embedded single line */ 'embedded' AS second;SELECT /* both embedded and trailing single line */ 'both' AS third; -- trailing single lineSELECT 'before multi-line' AS fourth;/* This is an example of SQL which should not execute: * select 'multi-line'; */SELECT 'after multi-line' AS fifth;/* and this is the end of the file */
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -