I have a two tables.
Table a
looks something like this -- first row is column names, both contain characters:
id | tractce | someString
1 | "0011900" | "Label here"
Table b
:
id | tractFIPS
1 | "0011900"
How do I convert a.tractce
to a foreign key column referencing b.id
?
So that it's:
id | tractce | someString
1 | 1 | "Label here"