SQL:如何知道字段是否“允许空值”通过 SQL 命令检查或不检查

发布于 2024-08-07 13:46:38 字数 48 浏览 1 评论 0原文

我想知道哪个表的字段是必需的或不需要的,所以我必须获得“允许空值”状态。怎么做呢?

I want to know which table's field are required or not required so I have to get "Allow nulls" state. How to do that?

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

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

发布评论

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

评论(3

伤痕我心 2024-08-14 13:46:38

我假设您正在谈论 SQL Server。

有一个表 INFORMATION_SCHEMA.COLUMNS,其中包含有关数据库中列的元数据。

您可以这样做:

SELECT TABLE_SCHEMA, TABLE_NAME, COLUMN_NAME, IS_NULLABLE
FROM INFORMATION_SCHEMA.COLUMNS
ORDER BY TABLE_SCHEMA, TABLE_NAME, COLUMN_NAME

IS_NULLABLE 为您提供设计器中使用的“允许空值”值。

I will assume you are talking about SQL Server.

There is a table, INFORMATION_SCHEMA.COLUMNS, that contains meta-data about the columns in the database.

You can do this:

SELECT TABLE_SCHEMA, TABLE_NAME, COLUMN_NAME, IS_NULLABLE
FROM INFORMATION_SCHEMA.COLUMNS
ORDER BY TABLE_SCHEMA, TABLE_NAME, COLUMN_NAME

IS_NULLABLE gives you the "Allow Nulls" value used in the designer.

墨小沫ゞ 2024-08-14 13:46:38

如果您在 MySQL 中使用 sql 命令

DESCRIBE Table;

其中 table 是您要检查的表的名称

If your in MySQL use the sql command

DESCRIBE Table;

Where table is the name of the table you want to examine

谜泪 2024-08-14 13:46:38

试试这个(SQL Server)

select sysobjects.name, syscolumns.name, syscolumns.isnullable
from   sysobjects join syscolumns
   on  sysobjects.id    = syscolumns.id
  and  sysobjects.xtype = 'U'
  and  sysobjects.name  = 'your table name'

Try this (SQL Server)

select sysobjects.name, syscolumns.name, syscolumns.isnullable
from   sysobjects join syscolumns
   on  sysobjects.id    = syscolumns.id
  and  sysobjects.xtype = 'U'
  and  sysobjects.name  = 'your table name'
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文