RPL: <#if first_name is one of "Bill", "Bob", "Tom">
Hey RPL'ers!
In SQL, there's the "IN" syntax, which lets yo say:
"If first_name in ('Bill', 'Bob', 'Tom'), then do_____"
Does an analogous syntax exist in RPL? Or would I have to string together a bunch of "or" statements—like this
<#if FIRST_NAME = "bill" || FIRST_NAME = "bob" || FIRST_NAME = "tom">
0