The
snake_case convention separates words with single underscores, typically written completely in lowercase. This format is the standard convention in relational SQL schemas, database columns, and Python codebases. If you are importing spreadsheet data containing database records, you can parse the structures cleanly with our
CSV to JSON Converter. Here is how snake_case columns map to SQL tables:
CREATE TABLE user_profiles (
profile_id INT PRIMARY KEY,
first_name VARCHAR(50) NOT NULL,
created_at TIMESTAMP DEFAULT CURRENT_TIMESTAMP
);