|
Hi I have a parameter query as follows: PARAMETERS SPECIES TEXT; select [tree_id], [Tree_tag], [SCI_SPECIE], [COM_SPECIE], [height], [DBH], [CONDITION] from [All Trees Drawing] where ucase([COM_SPECIE]) like ucase(SPECIES); If I enter "Oak" as the parameter, it only returns recoreds where Com_Specie='Oak' but I also want it to return trees say called, 'Red oak'. I think I need to use a concatenation somehow. I would normally do something like: where ucase([COM_SPECIE]) like ucase(' ' & SPECIES & ' '); but this does not work in the SQL used in Manifold. Any ideas? Thanks Oisin
|