Hello
This is a simple task but I didn't find an immediate way to do it.
I have a table with many columns (~5000); I need to select a subset of columns and then to extract a subset table.
The dumbest way to do it would be to pick each column from the column selector.
Actually, I could easily identify the column I need by applying to the column name a "pattern"
For example, let the column be the following:
AAA11
AAA12
ABB22
XXX99
CAB32
CAB99
I need to select the columns whose name includes a "B" and terminates with a "2"
They could be identified by a pattern such as "*B*2" , where "*" is a wildcard.
In the example, the pattern would select "ABB22" and "CAB32"
I did not find an easy way to do this.
thanks in advance
Emanuele