[SQL] 註解

雖然 python 好像用不到 SQL 的註解,不過還是把它放上來吧:
-- this is a single-line comment
    SQL 的單行註解是以--(兩個減號)開頭的,從它開始到那行結束都會被忽略。


/* this is a block (or multi-line) comment*/
    這是區塊註解,可以是跨行或是在行內使用。

留言

這個網誌中的熱門文章

[C] 每天來點字串用法 (2) - strcpy()、strncpy()

[Python] *args 和 **kwargs 是什麼?一次搞懂它們!

[C] 每天來點字串用法 (5) - strcat()、strncat()