I'm still learning how Foreign Keys work and wanted to know if a column can be null, can it be linked to a primary key?
Table Schema
users dmca-takedown
id------->user_id (can be null)
Before you ask, user_id can be null because it's a form that can be filled out both by users and non-users. Also, I'm sure by the name of the form, you understand it's purpose as well.
Let me clarify my question: I understand the Foreign Key "can" be linked to a primary key, but will it cause constraint issues if data is null when the main table's data must not be null?