SQL注釋
-
單行注釋
--this is a comment
-
塊注釋
/*this is a comment*/
MySql中的注釋
-
單行注釋
#this is a comment
-- this is a comment
(--空格)
-
塊注釋
/*this is a comment*/
/*!version SQL*/
其中version是5位數字的版本號,只有MySQL版本大於或者等於此版本才會執行其后的SQL語句,如果省略版本號,則都會執行
單行注釋
--this is a comment
塊注釋
/*this is a comment*/
單行注釋
#this is a comment
-- this is a comment
(--空格)
塊注釋
/*this is a comment*/
/*!version SQL*/
其中version是5位數字的版本號,只有MySQL版本大於或者等於此版本才會執行其后的SQL語句,如果省略版本號,則都會執行
本站轉載的文章為個人學習借鑒使用,本站對版權不負任何法律責任。如果侵犯了您的隱私權益,請聯系本站郵箱yoyou2525@163.com刪除。