There’s no official support for dynamic queries, you can’t bind a parameter to a column name.
However, there’s a way to do it in a custom query, but you’d need to be really careful to avoid the possibility of SQL Injection (e.g.: remove all characters that don’t match the a-z charset):
If you can, stick to the official methods provided by Wappler - this is definitely not meant for beginners