Tutorial QDB

hello everyone

I’m want to create a database
I already make .sql and .cfg file extention,
I already connected to the database

now I have a problem, When I type INSERT INTO customers (firstname,lastname) VALUES (Afif,Fifa);
It give me error “near INSERT syntax error.”

do you know why? I still confuse about it…

thanks

Try

INSERT INTO customers(firstname, lastname) VALUES('Afif', 'Fifa');