TE
TechEcho
Home24h TopNewestBestAskShowJobs
GitHubTwitter
Home

TechEcho

A tech news platform built with Next.js, providing global tech news and discussions.

GitHubTwitter

Home

HomeNewestBestAskShowJobs

Resources

HackerNews APIOriginal HackerNewsNext.js

© 2025 TechEcho. All rights reserved.

Ask HN: RFS: Modern SQL/db editor

11 pointsby jkcorrea9 months ago
tldr: someone PLEASE build a modern SQL editor. I would pay upwards of $20&#x2F;seat&#x2F;mo for a good one. strong suspicion many others would too.<p>-- The problem&#x2F;rant<p>I&#x27;ve grown increasingly frustrated with how archaic the modern story for basic database adminning has become. So many aspects of the developer experience have improved dramatically in recent years, but it feels like database tooling is one massive vertical hasn&#x27;t received much the same TLC.<p>Do people just not use SQL editors that often? I find myself constantly cmd-tabbing to Postico to check&#x2F;modify some rows either during development or to resolve prod issues. But the second I need a more advanced&#x2F;relational filter it&#x27;s either a lot of painful clicks away or just impossible to do through the table UI and now I have to write a query from scratch.<p>If it&#x27;s a commonly recurring task you can save the query, but now I have hundreds of these saved queries all with slightly different names to the point where it&#x27;s less taxing to just write a new query then hunt down &amp; slightly modify an old one.<p>Collaboration is non-existant. I&#x27;m forced to share these queries via slack or committing to a `misc&#x2F;*.sql` folder in our repo which feels awkward.<p>Tools I&#x27;ve tried include Postico, DBeaver, TablePlus, Beekeeper Studio, PopSQL, and various VSCode extensions. I don&#x27;t need features around DB Ops, I use Neon&#x2F;Supabase&#x2F;etc and just hope I never have to think about DB ops. I almost don&#x27;t care about SDL tasks either, I mainly do that through my ORM (s&#x2F;o Drizzle)<p>-- My request<p>Here&#x27;s a braindump of features I frequently desire. I would pay for a tool that did even ONE of these, but I think all are very possible and would 100x the value of an editor to me:<p><pre><code> - Intuitive filtering UI. You know my `id` column is a text, why is the default filter operation `&gt;`. I almost never want that for string cols. Let me type &quot;yesterday at 3pm&quot; in a timestamp filter. Let me fuzzy search my entire DB (obv this is hard for large dbs) - Relational filters. I should be able to filter by properties on relations. I&#x27;m often only given a username when solving a prod issue, and now finding their records in other tables becomes a 2-step process of finding the user&#x27;s ID then using that in a filter on the table I care about - Embedding &amp; formatted columns. I have various reports as custom queries&#x2F;views that I export as CSVs weekly to give to teammates. I wish I could just embed this view as an iframe in our internal dashboard. If you&#x27;re feeling generous, allow me to format the columns like Airtable or even make charts based on the view. This could easily become a massive business in its own right. - SQL language server&#x2F;intellisense (h&#x2F;t https:&#x2F;&#x2F;github.com&#x2F;supabase-community&#x2F;postgres_lsp). Need I say more? - AI autocompletion &amp; generation (a la Cursor). My current workflow is to cmd+tab to my ORM definition file, ask cursor to come up with a PSQL query for X table for Y problem, then cmd+tab back to Postico to run it. - Notebooks. I want to create playbooks to share with my team. Post-mortems, &quot;here&#x27;s how I debug XYZ production issue&quot;, etc. - Omnisearch. Let me CMD+K and fuzzy&#x2F;semantic search across my saved queries, tables, etc. </code></pre> I&#x27;ll be honest, been sitting on this idea for over a year and have tried and failed multiple times to build it myself (skill issue). Throwing this out there in hopes that a more cracked engineer is interested in taking a stab at it. I would immediately pay upwards of $20&#x2F;mo for even a partial solution and probably more for some of the team related features.<p>Email in bio if you&#x27;re interested in taking this up and want to chat more

6 comments

yen2239 months ago
For collab: check out either Metabase or Apache Superset. I&#x27;ve used Metabase in the past for sharing SQL queries as snippets or as graphs, and I miss it sometimes.<p>I am currently working on a mobile-first Postgres client. I am convinced that you are right about (desktop) database clients not being as powerful as they should be. Postgres in particular makes a lot of schema information available, but very few database clients make full use of it.
评论 #41295277 未加载
saltcod9 months ago
Thanks Jake — these are great.<p>Couple of quick questions:<p>— &quot;AI autocompletion &amp; generation....&quot; sort of like what <a href="https:&#x2F;&#x2F;postgres.new&#x2F;" rel="nofollow">https:&#x2F;&#x2F;postgres.new&#x2F;</a> does, but built into the Dashboard? - &quot;Notebooks...&quot; — like a Jupyter notebook kind of thing? We already have SQL Snippets you can share with team members, but you&#x27;re probably talking about the combination of text and SQL? — cmdk — we&#x27;ve just released a big revision of our menu last week, we should definitely add snippets and tables&#x2F;views etc. Great idea.<p>Love to hear anything else you&#x27;ve got in Supabase feedback!
评论 #41293424 未加载
petilon9 months ago
The reports feature of Visual DB seems to have most of what you are looking for: <a href="https:&#x2F;&#x2F;visualdb.com&#x2F;" rel="nofollow">https:&#x2F;&#x2F;visualdb.com&#x2F;</a><p>It has sophisticated filters and you can share reports with your team (as opposed to exporting CSVs).
twoquestions9 months ago
Have you looked at DataSpell? I haven&#x27;t used it myself but it looks like it fits at least some of what you need.<p><a href="https:&#x2F;&#x2F;www.jetbrains.com&#x2F;dataspell&#x2F;" rel="nofollow">https:&#x2F;&#x2F;www.jetbrains.com&#x2F;dataspell&#x2F;</a>
评论 #41301095 未加载
评论 #41293450 未加载
kiwicopple9 months ago
great list Jake - we&#x27;re working on a few of these already (and will have an update on the LSP next month)
评论 #41293250 未加载
slipwalker9 months ago
since i have a full jetbrains subscription ( for many years ) i use the DataGrip db client, and it serves me very well... before that ( looong before ) i used AquaDataStudio, and it was very nice too although not cheap at all.