If this is your first visit, be sure to check out the FAQ by clicking the link above.
You may have to register before you can post: click the register link above to proceed.
To start viewing messages, select the forum that you want to visit from the selection below.
The tutorial you gave me a link to just mentions that there is support for the bitwise XOR operator not the logical XOR operator. They are different things. Anyway, as it turns out, PostgreSQL DOES NOT support the XOR logical operator.
The tutorial you gave me a link to just mentions that there is support for the bitwise XOR operator not the logical XOR operator. They are different things. Anyway, as it turns out, PostgreSQL DOES NOT support the XOR logical operator.
Ok, logic operators are either value operations or bitwise operations. Bitwise operations consider the individual bits separately unlike the value operations that treat the while value as an entity. And when you don't specify bitwise operator, you assume it's the value operation. So, PostgreSQL DOES NOT SUPPORT the XOR value operator. Check this manual and tell me if you think differently: