繁体   English   中英

在 PGADMIN 中成功运行查询后看不到结果

[英]after successfully running the query in PGADMIN not able to see the result

当我运行查询时,我是 PGADMIN 的新手,弹出消息说成功运行但我看不到查询的结果

就像我运行时在 mysql 工作台中一样

select from customer
where customer_name='abc'

它显示了abc的所有客户名称,但在PGADMIN我看不到结果

除了单击并选择创建数据库和表之外,还有其他方法可以在 pgadmin 中创建数据库和表吗

是的,您还没有选择查询中的列。

select * from customer
where customer_name='abc';

暂无
暂无

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM