Dear all,
- There is a table as same as the following
t:( eid:1 2 3 4 5;name:A
BC
DE
F)
- I have made a function which extract the first element of the list
f:{ x[0]}
a:f[“A1234567”]
- I try to execute a select statement with the variable a, but it give a incorrect result.
select eid from t where name=a
- I expect the result which is same as the below statement but it is not same as I expected
select eid from t where name=`A
Please help to advise what wrong with this statement.
Regards,
Nelson