I have table which have createdby
and publishedby
columns.
These two get the same value(userId) some time.
Need a correct mysql query to get user ids without duplicating from two column.
like createdby column = 102,103,104
publisheby column = 103,105,104
excepted result - 102,103,104,105