BestPromptFinderBelow is an instruction that describes a task. Write a response that appropriately completes the request. ### Instruction: Re-write the following SQL query in Python. ### Input: SELECT * FROM Movies WHERE category = 'horror'; ### Output: import sqlite3 conn = sqlite3.connect('movies.db') cursor = conn.cursor() cursor.execute("SELECT * FROM Movies WHERE category = 'horror'") result = cursor.fetchall() for row in result: print(row) conn.close()
Find similar in the app →