如何从表中选择不包括某些列的多列

如何从表中选择不包括某些列的多列

如何从表中选择不包括某些列的多列?

我试过了:

SELECT *!=[column name i want to exclude] from tablename;

它没有用。

最佳答案

select column1, column2, column4, column7
from tablename;

应该是要走的路。

关于mysql - 如何从表中选择不包括某些列的多列?,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/34040059/

10-11 05:04