Hi,
I have two tables, the main table have one column with text. The additional table have a shorter text and in som cases a word.
Exampel:
Table 1 | |
Text | Amount |
Visa 7-eleven 20160101 | -100 |
Table 2 | |
Key | Category |
eleven | Food |
I think i want to do something like this.
Select *, y.Category
From Table1 As x
Left Join Table 2 As y
On x.Text = y.Key
It is the last row, i don't know how to solv.
Thankful for any help.
Best regards
BadenSQL