gpt4 book ai didi

mysql - 我如何知道一个表的主键字段值已在 MySQL 中的任何其他相关表中使用?

转载 作者:行者123 更新时间:2023-11-29 14:22:58 25 4
gpt4 key购买 nike

我如何知道一个表的主键字段值(例如 ID)已在 MySQL 中的任何其他相关表中使用?

请帮助我。

最佳答案

您必须了解数据库的结构。然后你可以做类似的事情

select * from your_table where id in 
(
select id from ref_table1
union
select id from ref_table2
union
select id from ref_table3
)

关于mysql - 我如何知道一个表的主键字段值已在 MySQL 中的任何其他相关表中使用?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/11470849/

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