PW Akshay

Generation

text to sql syntaxSun, 11 Dec 2022

create a program for data entries for school management with MySQL and the code must have 500 lines.

/*school management */ CREATE TABLE IF NOT EXISTS 'students'( 'id' int(11) NOT NULL AUTO_INCREMENT, 'name' varchar(50) NOT NULL, 'age' int(2) NOT NULL, 'address' varchar(50) NOT NULL, 'class' varchar(50) NOT NULL, PRIMARY KEY ('id')); INSERT INTO 'students' ('name','age','address','class') VALUES ('muhaiminul islam','21','dhaka','cse'); INSERT INTO 'students' ('name','age','address','class') VALUES ('monirul','23','rajshahi','cse'); INSERT INTO 'students' ('name','age','address','class') VALUES ('ramiz','22','chittagong','cse'); INSERT INTO 'students' ('name','age','address','class') VALUES ('mahmud','23','khulna','cse'); INSERT INTO 'students' ('name','age','address','class

Questions about programming?Chat with your personal AI assistant