Select specific rows and columns from an SQL database

前端 未结 4 1247
余生分开走
余生分开走 2020-12-10 18:59

Is it possible to retrieve specific columns of specific rows in an SQL query?

Let\'s say I\'m selecting from my SQL table, called my_

4条回答
  •  遥遥无期
    2020-12-10 19:26

    Replace the wildcard symbol * with the column names you want to retrieve.

    But please read up the documentation on SQL standard. It is very unlikely you need 1.000 columns in a table.

提交回复
热议问题