0% found this document useful (0 votes)
4 views1 page

SQL Queries for Student Details Management

The document contains SQL commands for managing a 'student_details' table. It includes queries to select all records, insert new student records, and retrieve column information from the table schema. Additionally, it shows an insertion of a new record with specific attributes for a female student named Priya.

Uploaded by

koulibalyhamam
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as TXT, PDF, TXT or read online on Scribd
0% found this document useful (0 votes)
4 views1 page

SQL Queries for Student Details Management

The document contains SQL commands for managing a 'student_details' table. It includes queries to select all records, insert new student records, and retrieve column information from the table schema. Additionally, it shows an insertion of a new record with specific attributes for a female student named Priya.

Uploaded by

koulibalyhamam
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as TXT, PDF, TXT or read online on Scribd

select * from student_details

insert into student_details


values ('Mayank','M',18,'2024-02-02',115.35),
('Mahesh','M',34,'2023-11-08',324.66)

select * from INFORMATION_SCHEMA.COLUMNS where TABLE_NAME like 'student_details'

insert into student_details (Student_Name,Gender)


values ('Priya','F')

select * from student_details

You might also like