Is it possible to do something like this?
I get an error when I execute this, but I want to be able to do a partial match over both columns. Is this something that could be done with a dynamic view (i.e., in the FROM clause). The user would enter text such as "HF 3".
Any thoughts?
RC
Code:
select (BillPrefix + ' ' + BillNumber) as Bill
from Bills
where Bill like 'HF 3%'
Any thoughts?
RC