为什么在 openGauss 中使用“explain timing”时显示错误?

openGauss=# explain timing select * from numbers where a < 1;

错误:在“时间”或附近出现语法错误

LINE 1: explain timing select * from numbers where a < 1;

open-gauss
openGauss
2023-04-19 13:31:02
浏览
收藏 0
回答 1
待解决
回答 1
按赞同
/
按时间
ycy856

看起来你正在尝试显示查询计划和时间?

试试这个:

EXPLAIN ANALYZE     SELECT *     FROM numbers     WHERE a < 1;

显示所有查询的时间:

\timing     on;


已于2023-4-19 14:52:27修改
分享
微博
QQ
微信
回复
2023-04-19 14:52:07
相关问题
image组件中使用bindContextMenu报错
309浏览 • 1回复 待解决
HarmonyOS 安全控件无法弹窗中使用
356浏览 • 1回复 待解决
HarmonyOS 依赖library中使用worker报错
151浏览 • 1回复 待解决
getContext(this)能否自定义类中使用
2162浏览 • 1回复 待解决
自定义组件中使用@ObjectLink报错
952浏览 • 1回复 待解决
开源的中间件能否PolarDB中使用?
2538浏览 • 1回复 待解决
@watch中使用异步方法后UI反应慢
310浏览 • 1回复 待解决
为什么ArkTS中禁止使用any?
841浏览 • 1回复 待解决