You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
13 lines
357 B
13 lines
357 B
CREATE TABLE Student(
|
|
student_id INT PRIMARY KEY AUTO_INCREMENT,
|
|
student_name VARCHAR(60),
|
|
student_age INT
|
|
);
|
|
|
|
INSERT INTO Student(student_name, student_age) VALUES("Shubham verma", 21);
|
|
INSERT INTO Student(student_name, student_age) VALUES("Utkarsh verma", 23);
|
|
|
|
ALTER USER 'root' IDENTIFIED WITH mysql_native_password BY 'password';
|
|
|
|
flush privileges;
|