Provider | Free Tier Highlights | Best For |
---|---|---|
Aiven | 1 CPU, 1 GB RAM, 1GB Storage | Production-like prototyping |
Neon | 10 projects, 0.5 GB storage, serverless, branching | Modern development workflows, serverless apps |
Fly.io | 3 GB storage, 160 GB outbound | Lightweight global apps |
Render.com | 0.1 CPU, 256 RAM, 100 connections, daily backups, 30 day limit | Small apps needing more capacity |
Amazon RDS | 20 GB + backups, 750 hrs/month | Temporary usage via AWS Free Tier |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
CREATE TABLE students (student_id INT, student_name VARCHAR(200)); | |
INSERT INTO students values (1, 'Francesco'), (2, 'Maria'), (3, 'Giuseppa'); |