Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 86863
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 10, 20262026-05-10T22:18:46+00:00 2026-05-10T22:18:46+00:00

Similar to this question but for MySQL…. How can I programmatically determine foreign key

  • 0

Similar to this question but for MySQL….

How can I programmatically determine foreign key references in MySQL (assuming InnoDB)? I can almost get them with:

SHOW TABLE STATUS WHERE Name = 'MyTableName'; 

…but alas, the comment column which seems to contain some of this info gets truncated so I can’t rely on it. There must be some other way…

I’d be happy with a C API call, a SQL statement, anything–I just need something that consistently works.

Note: I’ve also considered parsing the results of a ‘SHOW CREATE TABLE MyTableName’ statement, but I’m really hoping there’s something simpler.

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. 2026-05-10T22:18:46+00:00Added an answer on May 10, 2026 at 10:18 pm

    There are two tables you can query to get this information: INFORMATION_SCHEMA.TABLE_CONSTRAINTS and INFORMATION_SCHEMA.KEY_COLUMN_USAGE.

    Here’s a query from the comments on the latter page linked above, which demonstrates how to get the info you seek.

    SELECT CONCAT( table_name, '.', column_name, ' -> ',    referenced_table_name, '.', referenced_column_name ) AS list_of_fks  FROM INFORMATION_SCHEMA.key_column_usage  WHERE referenced_table_schema = 'test'    AND referenced_table_name IS NOT NULL  ORDER BY table_name, column_name; 

    Use your schema name instead of ‘test‘ above.

    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Ask A Question

Stats

  • Questions 138k
  • Answers 138k
  • Best Answers 0
  • User 1
  • Popular
  • Answers
  • Editorial Team

    How to approach applying for a job at a company ...

    • 7 Answers
  • Editorial Team

    How to handle personal stress caused by utterly incompetent and ...

    • 5 Answers
  • Editorial Team

    What is a programmer’s life like?

    • 5 Answers
  • Editorial Team
    Editorial Team added an answer >>> a = [1,2,3] >>> b = [4,5,6] >>> c… May 12, 2026 at 7:32 am
  • Editorial Team
    Editorial Team added an answer You have to be careful with using a leading underscore.… May 12, 2026 at 7:32 am
  • Editorial Team
    Editorial Team added an answer I haven't compared performance of the various data visualization controls… May 12, 2026 at 7:32 am

Related Questions

Similar to this question but for MySQL.... How can I programmatically determine foreign key
This is very similar to question 653714 , but for MySQL instead of SQL
For reasons that are irrelevant to this question I'll need to run several SQLite
I'm building a small personal web app in Ruby on Rails. I've set it
My users will import through cut and paste a large string that will contain

Trending Tags

analytics british company computer developers django employee employer english facebook french google interview javascript language life php programmer programs salary

Top Members

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.