I have two tables like so
Table A
server_name
start_time
end_time
Table B
id
description
What I want to do is join the two tables together so it looks like this
Table C
server_name
start_time
end_time
id
description
The only way I can make the join is if I search for the server_name in the description.
I have tried using the like function but this doesn't work. It needs to be exactly what is in server_name column in the description