基于 LLM 大模型的 AI 智能体应用开发平台。提供了开箱即用的 AI 智能体和可视化开发工具,轻松进行数据处理、模型调用、检索增强生成 (RAG)工作流编排等,在您的企业服务中集成生成式人工智能,释放您 的全部业务潜能。
Interactive console to import data (drag and drop) and start querying right away.
Check our Web Console documentation to get started.
Query three large datasets and more than 2 billion rows in milliseconds with SQL
Try QuestDB demo in your browser
QuestDB enhances ANSI SQL with time series extensions to manipulate time stamped data
SELECT timestamp, tempCFROM sensorsWHERE timestamp IN '2021-05-14;1M';
-- Search timeSELECT timestamp, tempCFROM sensorsWHERE timestamp IN '2021-05-14;1M';
SELECT timestamp, avg(tempC)FROM sensorsSAMPLE BY 5m;
-- Slice timeSELECT timestamp, avg(tempC)FROM sensorsSAMPLE BY 5m;
SELECT timestamp, sensorName, tempCFROM sensorsLATEST ON timestamp PARTITION BY sensorName;
-- Navigate timeSELECT timestamp, sensorName, tempCFROM sensorsLATEST ON timestamp PARTITION BY sensorName;
SELECT sensors.timestamp ts, rain1HFROM sensorsASOF JOIN weather;
-- Merge timeSELECT sensors.timestamp ts, rain1HFROM sensorsASOF JOIN weather;
QuestDB is open source. Follow us on Twitter, star our GitHub repo, and join our developer community on Slack!
Stay up to date with all things QuestDB