作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
psql 控制台中有许多有用的快捷方式,如 \d
或 \l
。
我想知道有没有用于 SELECT * FROM table_name
的?
我经常出于学习目的使用此查询,因此不必一直编写 select * from ...
会很有帮助。
最佳答案
在标准SQL中有一个SELECT * FROM
的快捷方式,所以你可以在psql中使用它:
TABLE tablename;
这种语法速记只能用于有限范围的子句。 The manual:
It can be used as a top-level command or as a space-saving syntaxvariant in parts of complex queries. Only the
WITH
,UNION
,INTERSECT
,EXCEPT
,ORDER BY
,LIMIT
,OFFSET
,FETCH
andFOR
locking clauses can beused withTABLE
; theWHERE
clause and any form of aggregation cannotbe used.
关于sql - SELECT * FROM 有快捷方式吗?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/30275979/
我是一名优秀的程序员,十分优秀!