JDBC uses a Statement object to execute static SQL queries.
The Statement object allows SQL commands to be executed directly. In JDBC, you use a Statement to query the database. For example, using `Statement stmt = connection.createStatement();` followed by `stmt.executeQuery(sql);` lets you run a query and work with the results.