I have values with following format in a table in sqlite:
AAAAAAAAAA#BBBBBBBBBB AAAA#BBBBBBBBBB AAAAAAAAAAAAAAAAA#BBBBBBBBBBB
I would lik
Never used sqlite but something along the lines of substr(yourfieldname, 1, instr(yourfieldname, '#') -1) should do it.
substr(yourfieldname, 1, instr(yourfieldname, '#') -1)