mySQL 字段下面有一条虚线。?

发布于 2024-07-22 07:27:49 字数 131 浏览 5 评论 0原文

谁能解释一下那条虚线代表什么 我正在使用 phpmyadmin

字段

名称类型 NULL 默认

经度 float 否 0.001
纬度浮点数 否 0.001

谢谢。

can anyone please explane what does that dashed line stands for
i am using phpmyadmin

field are

name type NULL default

longtitude float No 0.001
latitude float No 0.001

thank you.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

弃爱 2024-07-29 07:27:49

来自 http://psych.ucsc.edu/AScils/phpmyadmin/Documentation.html

$cfg['ShowBrowseComments'] 布尔值
$cfg['ShowPropertyComments'] 布尔值
通过将相应的变量设置为 TRUE,您可以在浏览或属性显示中启用列注释的显示。 在浏览模式下,评论显示在标题内。 在属性模式下,注释使用字段名称下方的 CSS 格式的虚线显示。 注释显示为该字段的工具提示。

所以...看起来该字段附加了注释

编辑:您可以使用以下方式阅读注释:(

SHOW FULL COLUMS FROM tbl_name LIKE 'col_name';

来源:http://dev.mysql.com/doc/refman/5.0/en/show-columns.html)

from http://psych.ucsc.edu/AScils/phpmyadmin/Documentation.html

$cfg['ShowBrowseComments'] boolean
$cfg['ShowPropertyComments'] boolean
By setting the corresponding variable to TRUE you can enable the display of column comments in Browse or Property display. In browse mode, the comments are show inside the header. In property mode, comments are displayed using a CSS-formatted dashed-line below the name of the field. The comment is shown as a tool-tip for that field.

So... It looks like the field has a comment attached to it

edit: you can read the comment using:

SHOW FULL COLUMS FROM tbl_name LIKE 'col_name';

(source: http://dev.mysql.com/doc/refman/5.0/en/show-columns.html)

野味少女 2024-07-29 07:27:49

我认为这意味着您为该字段定义了注释,它是
PhpMyAdmin 以礼貌的方式向您展示可以将鼠标“悬停”在其上并
阅读。
享受

I think it means you defined a comment for that field and it is
PhpMyAdmin's polite way to show you can "hover" your mouse over it and
read it.
enjoy

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文