是否可以使用查询来选择除少数列之外的所有列?
Possible Duplicate:
SQL exclude a column using SELECT * [except columnA] FROM tableA?
Hi all
I am using Mysql.
and I am looking for, Is it posssible to use a query to select all coumns except few columns?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
不,这是不可能的,表达式“选择所有除外”尚未在任何现有数据库中实现。
No it is not possible, the expression "select all except" has not yet been implemented in any existing database.
是的,通过具体列出列,例如
(表包含未列出的其他列)
但是,如果您的问题是关于(伪)含义的内容
,* = all, less col2 & col4,那么迄今为止它还没有在任何数据库系统中实现。
Yes, by listing the columns specifically, e.g.
(table contains other columns not listed)
But if your question is about something like (pseudo)
meaning, * = all, less col2 & col4, then it hasn't been implemented in any DB system to date.