Generation

text to sql syntaxTue, 20 Jun 2023

del siguiente codigo, elabora una consulta: CREATE TABLE students ( name VARCHAR(255) NOT NULL, date DATE, age INT ); INSERT INTO students (name, date, age) VALUES ('Ana', '1994-3-12', 23), ('Joaquín', '1993-8-22', 24), ('Ramón', '1993-7-1', 24), ('Sofía', '1992-11-5', 25), ('Yolanda', '1994-10-11', 23);

SELECT * FROM students WHERE age=24;

Want to kickstart your project?Use the new AI Studio to create your code