Is there a way to compare the values of two columns in MySQL? For example if I have a table:
+----------------+
| Col1 | Col2 |
|----------------|
| abc | 123abc |
| def | 234def |
| | 123ghi |
+----------------+
And I wanted to retrieve all the entries in Col2
that contained the values of Col1
:
+---------+
| NewCol |
|---------|
| 123abc |
| 234def |
+---------+
How would I go about that?
Here is a pseudo-query to explain a bit further.
SELECT Col2 FROM TableName WHERE Col2 LIKE Col1;