Select all columns except one in MySQL?

后端 未结 30 2857
后悔当初
后悔当初 2020-11-22 00:46

I\'m trying to use a select statement to get all of the columns from a certain MySQL table except one. Is there a simple way to do this?

EDIT: There are 53 columns i

30条回答
  •  一生所求
    2020-11-22 01:31

    It is good practice to specify the columns that you are querying even if you query all the columns.

    So I would suggest you write the name of each column in the statement (excluding the one you don't want).

    SELECT
        col1
        , col2
        , col3
        , col..
        , col53
    
    FROM table
    

提交回复
热议问题