-- criando a tabela estudantes
CREATE TABLE estudantes (
  id INTEGER PRIMARY KEY,
  nome VARCHAR(100) NOT NULL,
  genero VARCHAR(10) NOT NULL
);
-- inserindo valores na tabela
INSERT INTO estudantes VALUES (1, 'Ryan', 'M');
INSERT INTO estudantes VALUES (2, 'Joanna', 'F');
INSERT INTO estudantes VALUES (3, 'Ana', 'F');

-- manipulando dados
SELECT * FROM estudantes WHERE genero = 'F';

Embed on website

To embed this project on your website, copy the following code and paste it into your website's HTML: