I have values with following format in a table in sqlite:
AAAAAAAAAA#BBBBBBBBBB AAAA#BBBBBBBBBB AAAAAAAAAAAAAAAAA#BBBBBBBBBBB
I would lik
Please try:
SUBSTR(col,1,INSTR(col,'#') -1)
Can be found at: http://www.sqlite.org/lang_corefunc.html