How to select all the columns of a table except one column?

前端 未结 13 2422
被撕碎了的回忆
被撕碎了的回忆 2020-12-14 05:43

How to select all the columns of a table except one column?

I have nearly 259 columns I cant mention 258 columns in SELECT statement.

Is there

13条回答
  •  眼角桃花
    2020-12-14 06:16

    Create a view. Yes, in the view creation statement, you will have to list each...and...every...field...by...name.

    Once.

    Then just select * from viewname after that.

提交回复
热议问题