Introduction
In this challenge, you'll be working with an SQLite database named employees.db to filter employee data. The goal is to query the database and extract the names of all employees belonging to the IT department.
You'll need to connect to the database using the sqlite3 command, write a SELECT statement with a WHERE clause to filter by department, and then manually copy the output of your query and save it to a file named result.txt in the /home/labex/project/ directory. The result.txt file should contain a list of IT department employee names, one name per line.


