write sql program to get the detail of student in a class?
Answer Posted / bhagwat sharma
create table student
(
roll_no int,
name varchar(20),
class int,
address varchar(50),
phone int
)
++++++++++++++++run select than press f5
insert into student values(1,'Bhagwat',10,'Mathura',9268450493)
+++++++++++++run select than press f5
select * from student where roll_no=1
+++++++++++++++++++++++++++run select than press f5
| Is This Answer Correct ? | 13 Yes | 0 No |
Post New Answer View All Answers
What is difference between clustered index and non clustered index?
Is sql server 2016 free?
What are the different acid properties?
What does nvl stand for?
Explain transaction server implicit?
How do I completely remove sql server instance?
Explain differentiate between a having clause and a where clause?
What is a join in sql?
What is the maximum size per database for sql server express?
What are sql server procedures?
How many categories of functions based their return modes?
Explain what is row_number function?
What are distinctive joins find as a part of sql?
How to delete existing triggers using "drop trigger"?
What is the language structure to add a record to a table?