I prefer to use sp_fkeys for a given table to query foreign keys:
EXEC sp_fkeys 'Table_Name'
Want to learn SQL from basics! Here's the right video for you on SQL provided by Intellipaat:
You can also specify the schema this way:
EXEC sp_fkeys @pktable_name = 'Table_Name', @pktable_owner = 'dbo'
If you are not specifying the schema, then use this docs as it will give you the tips on listing foreign keys referencing to the table in SQL Server.