@thomasp85:我激动万分,终于可以揭开我们2026年所做工作的神秘面纱:请认识 ggsql!一个全新的扩展……

X AI KOLs Following 工具

摘要

Posit 宣布推出 ggsql 的 alpha 版本。ggsql 是一种新的 SQL 语言扩展,将图形语法风格的数据可视化引入 SQL,兼容 Quarto、Jupyter notebooks、Positron 和 VS Code。用户可以使用受 ggplot2 启发的熟悉 SQL 语法,创建分层、结构化的可视化图表。

我激动万分,终于可以揭开我们2026年所做工作的神秘面纱: 请认识 ggsql!这是 SQL 语言的一个全新扩展,专为使用图形语法创建可视化图表而设计。欢迎阅读博客文章了解详情 https://t.co/SvE5AO9uFI
查看原文 导出为 Word 导出为 PDF
查看缓存全文

缓存时间: 2026/05/09 04:54

Can you show me how many space missions were conducted per country over the years? Response from an AI system: Sure! Here is a query that does that: SELECT country, year_of_mission, COUNT(*) AS mission_count FROM astronauts.parquet GROUP BY country, year_of_mission ORDER BY country, year_of_mission And in our experience they're equally adept at SQL\-based visualization\. Not only can they generate ggsql code but because ggsql extends SQL, a single prompt can take you from question to SQL query to final visualization:

相似文章

ggsql:面向 SQL 的图形语法

Lobsters Hottest

ggsql 是一款 Alpha 版本工具,它将图形语法的可视化能力引入 SQL,允许用户在 Quarto、Jupyter、Positron 和 VS Code 中利用 SQL 语法构建结构化、模块化的可视化图表。

扩展PostgreSQL以支持8亿ChatGPT用户

OpenAI Blog

OpenAI分享了扩展PostgreSQL以支持8亿ChatGPT用户及每秒数百万查询的技术见解,采用了单主架构搭配50个只读副本,同时通过分片和优化策略管理写入密集型工作负载带来的挑战。