Home  >  Article  >  Database  >  How to annotate navicat

How to annotate navicat

爱喝马黛茶的安东尼
爱喝马黛茶的安东尼Original
2019-08-13 10:26:3910762browse

How to annotate navicat

There are three ways to write comments in navicat:

A string starting with # can have multiple #s in a row.

String starting with -, note: it can only be -, and a half-width space needs to be added after -.

Strings surrounded by /* */ are similar to comments in Java, but the beginning of // is not allowed.

Related recommendations: "Navicat for mysql graphic tutorial"

Example:

SELECT * from s_user;    # 这注释持续到行尾
SELECT * from s_user;    -- 这注释持续到行尾
SELECT * from s_user;    /** 一行注释 */
SELECT * from s_user;
/*
多行注释
多行注释
*/

The above is the detailed content of How to annotate navicat. For more information, please follow other related articles on the PHP Chinese website!

Statement:
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn