javier romero

Generation

text to sql syntaxWed, 12 Apr 2023

crea la base de datos con 4 usuarios: SecreDGT, Profesor, policiaurbana y adminGeneral.

CREATE DATABASE users; CREATE TABLE user( username varchar (50) NOT NULL, password varchar (50) NOT NULL, PRIMARY KEY (username) ); INSERT INTO user(username, password) VALUES ('SecreDGT', '1234'), ('Profesor', '1234'), ('policiaurbana', '1234'), ('adminGeneral', '1234');

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