The dataset is currently empty. Upload or create new data files. Then, you will be able to explore them in the Dataset Viewer.

import sqlite3

def create_db(): # Connect to SQLite database (or create it) conn = sqlite3.connect('office_records.db') c = conn.cursor()

# Create a table for storing employee records
c.execute('''
    CREATE TABLE IF NOT EXISTS employees (
        id INTEGER PRIMARY KEY,
        name TEXT,
        position TEXT,
        department TEXT,
        date_of_joining TEXT
    )
''')

conn.commit()
conn.close()

create_db()

Downloads last month
12