久久久久久久视色,久久电影免费精品,中文亚洲欧美乱码在线观看,在线免费播放AV片

<center id="vfaef"><input id="vfaef"><table id="vfaef"></table></input></center>

    <p id="vfaef"><kbd id="vfaef"></kbd></p>

    
    
    <pre id="vfaef"><u id="vfaef"></u></pre>

      <thead id="vfaef"><input id="vfaef"></input></thead>

    1. 站長(zhǎng)資訊網(wǎng)
      最全最豐富的資訊網(wǎng)站

      mysql的注釋有幾種寫(xiě)法?

      mysql的注釋有3種,分別為:1、使用“#注釋內(nèi)容”進(jìn)行的單行注釋;2、使用“– 注釋內(nèi)容”進(jìn)行的單行注釋,“–”與注釋內(nèi)容之間要有空格;3、使用“/* 注釋內(nèi)容 */”進(jìn)行的多行注釋。

      mysql的注釋有幾種寫(xiě)法?

      MySQL的注釋風(fēng)格總的來(lái)說(shuō)有三種、它們分別是 :

      1、單行注釋可以用"#"

      select 1 as cname; #this is a comment  +-------+ | cname | +-------+ |     1 | +-------+  -- (#后面直接根的就是注釋)

      2、單行注釋的第二種寫(xiě)法用 "– "

      注意這個(gè)風(fēng)格下"–【空格】" 也就是說(shuō)“–" 與注釋之間是有空格的。

      select 123; -- this is a comment  +-----+ | 123 | +-----+ | 123 | +-----+  -- 注意啊-- 后面是要有一個(gè)空格的

      3、多行注釋可以用/**/

      mysql> select 123; /* this is a comment */+-----+ | 123 | +-----+ | 123 | +-----+1 row in set (0.00 sec)  mysql> select 1+ /* this is a                           comment */ 1;+-------+ | 1+  1 | +-------+ |     2 | +-------+1 row in set (0.00 sec)

      推薦教程:mysql視頻教程

      贊(0)
      分享到: 更多 (0)
      網(wǎng)站地圖   滬ICP備18035694號(hào)-2    滬公網(wǎng)安備31011702889846號(hào)