how to dispaly a particular row details from a given table
Answer Posted / karthick.r
the query to display a particular record for the emp'v4290'
is given below
select * from employee where empid="v4290";
in this eg employee is the table-name and v4290 is the value
for the attribute empid. where is the clause to fetch the
record from the backend database table
| Is This Answer Correct ? | 3 Yes | 0 No |
Post New Answer View All Answers
Can we write a distributed query and get some data which is located on other server and oracle database?
What is resource governor?
Do you know the different ddl commands in sql?
How to disable a login name in ms sql server?
Explain powershell included in sql server 2008?
How to get @@error and @@rowcount at the same time?
Can we call stored procedure in trigger?
What options are there to delete rows on the publisher and not on the subscriber? : sql server replication
Explain the steps to use transact-sql cursor?
Define tool Manage Statistics in SQL Server 2000 query ?
What are statistics?
How do I edit a procedure in sql server?
What are the 2 types of classifications of constraints in the sql server?
List some major differences between triggers and stored procedures?
Do you know what is recursion? Is it possible for a stored procedure to call itself or recursive stored procedure?