gpt4 book ai didi

constraints - 删除 _sql_constraints

转载 作者:行者123 更新时间:2023-12-01 17:25:00 26 4
gpt4 key购买 nike

我想删除_sql_constraints

例如,在 account_invoice.py 中,数字字段有一个限制。现在我想删除它。

有人知道如何处理吗?

谢谢。

最佳答案

您可以使用以下查询删除约束。

SELECT *
FROM information_schema.constraint_table_usage
WHERE table_name = 'account_invoice';

ALTER TABLE account_invoice DROP CONSTRAINT account_invoice_number_uniq;

关于constraints - 删除 _sql_constraints,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/15335401/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com