i want to achieve something like this:
#Statement for selecting specific Columns
Select (Select column_name from information_schema.COLUMNS where column_name like 'code%' and table_name like 'databasewithmanymanycolumns') from databasewithmanymanycolumns;
(This example isn´t working, it´s just there for explaining what i want to achieve) I want to Select Columns with the Name Like in a Subquery without explicitely have to name every column, because the table has simply too much to name everyone explicitely.
Is there kind of Statement that could achieve this? Any workaround with other statements?
Thank you very much for your help, kind regards, SirSandmann