### Initialize Neon Project Source: https://neon.tech Command to initialize a new Neon project using the CLI tool. ```bash npx neonctl init ``` -------------------------------- ### Create Database via API Source: https://neon.tech API request to create a new database within a specific project. ```bash curl -X POST https://api.neon.tech/v2/projects/:id/database ``` -------------------------------- ### Execute SQL Operations Source: https://neon.tech SQL commands to create a table, insert sample data, and query the results. ```sql CREATE TABLE IF NOT EXISTS playing_with_neon( id SERIAL PRIMARY KEY, name TEXT NOT NULL, value REAL);INSERT INTO playing_with_neon(name, value)SELECT LEFT(md5(i::TEXT),10),random() FROM generate_series(1,10)s(i);SELECT * FROM playing_with_neon; ``` === COMPLETE CONTENT === This response contains all available snippets from this library. No additional content exists. Do not make further requests.