Home >Backend Development >PHP Tutorial >如何知道数据库表外键与哪个表关联

如何知道数据库表外键与哪个表关联

WBOY
WBOYOriginal
2016-06-23 14:09:061458browse

现在有一个a表,表中有一个外键与b表中的主键关联,但是现在不知道b表是哪个表,有没有办法查出b表是哪张表?


回复讨论(解决方案)

这种关系不是唯一的,很难查到的。

恩,除了挨个表找似乎真的没什么好办法

从表信息中就看不到吗?

a表 有个id 字段。自增。
b表 有个di 也是自增,   

2个表的同时del select update inset 不就得了?

a表 有个id 字段。自增。
b表 有个di 也是自增,   

2个表的同时del select update inset 不就得了?

怎么del select呢?不知道b表啥名啊

不说别的,起码你
 SHOW CREATE TABLE tbl_name
就能看到谁是谁

不说别的,起码你
 SHOW CREATE TABLE tbl_name
就能看到谁是谁

这个方法可用,谢谢

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
Previous article:php生成excel问题Next article:使用php 查询用户信息