I have SQL table like this:
create table [Tbl](
[_Id] int Identity(1, 1),
[_ProjectId] int,
[Name] varchar(255),
[Age] int
...
Primary Key([_Id])
)
I need to select all values but not from the columns which names started by "_" (_Id, _ProjectId). How can I do it?
(For understanding: I have many tables like this with their specific columns. I don't know all the colum names).