In PHP, when extracting bit-flags from MySQL columns/fields, I see (from other SO answers):
UNIQUE_KEY_FLAG = 4
UNIQUE_FLAG = 65536
I'm wondering what the difference is between these two bit-flags?
And why do the lists that I do find show both NUM_FLAG and GROUP_FLAG = 32768?
I'm also wondering why I can't seem to find anything regarding a complete list of field/column bit-flags on either php.net or mysql.com (Oracle). The few lists in SO answers seem to miss bit-flag #8 which is 'MULTIPLE_KEY_FLAG' (I did find one SO answer that did show this) and a couple other entries seem to be lacking as well such as, 4096 and 8192. But in finding a complete list of these bit-flags I'm hoping will reveal a descriptive answer to what each one is... I can only guess my internet searching abilities must be getting old.