I want to run the most elementary code
import sqlite3 conn = sqlite3.connect('base.db-journal') cursor = conn.cursor() cursor.execute('CREATE TABLE IF NOT EXISTS users (id INT, name TEXT, group TEXT, TgID TEXT)') I have the following error: sqlite3.OperationalError: near "group": syntax error
Replacing names, using formatting, nothing helps. Help me please.