logoalt Hacker News

nilamo04/02/20252 repliesview on HN

I heavily disagree with the notion that most developers would rather query with something that isn't SQL.


Replies

kreetx04/02/2025

Funny, as Triplit front page shows a query much like SQL:

  const deliveredMessagesQuery = client
    .query("messages")
    .Where("conversationId", "=", convoId)
    .Order("created_at", "DESC")
show 3 replies
robertlagrant04/02/2025

Probably the biggest upgrade SQL could have is putting the SELECT after the FROM, so autocomplete would work nicely.