sql - How to combine 2 bit columns -
I am inquiring with a database and I have 2 bit columns that I need to combine (in this example If a true column should be true).
Something like this: Select col1 ||
What is the easiest way to get it?
select col1 | MyTable to Col2
Comments
Post a Comment