You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 

10 lines
250 B

import sqlite3
sqlconnect = sqlite3.connect("movies.sqlite")
#cursor = sqlconnect.cursor()
sql_query = """ CREATE TABLE movie(
id integer PRIMARY KEY autoincrement,
movie_title varchar(50) NOT NULL
)"""
sqlconnect.execute(sql_query)