cammasmith

↗ HN profile [ 59.3 ms ] full profile
Karma
0
Created
()
Submissions
0
  1. LLMs are good at SQL. It's precise, expressive, and unambiguous. If you connect an MCP server to Postgres, then the agent can query it directly. The same cannot be said for NoSQL, and given how many people use NoSQL…

  2. Of all the NoSQL databases, DynamoDB is one of the most frustrating to query. MongoDB has an expressive query language. Cassandra has CQL, which is close enough to SQL that most engineers can pick it up quickly.…

  3. My dad and I built a SQL layer for DynamoDB (DynamoSQL) because we kept running into the same problem: we needed to query information across multiple tables (or multiple record types within a single table) and had no…

  4. As a software developer, I've frequently used DynamoDB, and I have found myself missing the ease of SQL querying. So I built DynamoSQL to be a SQL layer. It allows you to write standard ANSI SQL in DynamoDB, including…