Final answer:
To enter a new record into a database using SQL, you can use the INSERT INTO statement.
Step-by-step explanation:
To enter a new record into the database, you need to use SQL's INSERT INTO statement. Assuming the table is called 'bikes' and the fields are 'company' and 'name', you can execute the following query:
INSERT INTO bikes (company, name) VALUES ('GT Bicycles', 'Bike Name');
This query will add a new record with the company 'GT Bicycles' and the name of the bike. Make sure to adjust the table and field names based on your database schema.