Question:

I need a query to pull records in SQL ?

by  |  earlier

0 LIKES UnLike

I need a query to pull records in SQL ?

 Tags:

   Report

6 ANSWERS


  1. And what is the table name you need or any other information?


  2. HI Panorama,

    Just go through this software forum in buzzycode.com.  You will get appropriate reply.Ok.

  3. select * from tablename

    this is very simple

  4. question no very clear.

    well

    SELECT * FROM <tablename>

  5. hi, if u want to retrieve only the records from database table u can use the query given by the users.

    But if u want to sort the results -> select * from <table_name> order by column_name desc

    -> select * from <table_name> order by column_name asc

    if u want to retrieve the data on particular condition use where clause

    -> select * from <emp> where emp_id = 12345;

    this link may help u to learn basics of sql

    http://www.dba-oracle.com/concepts/sql_q...


  6. select * from tablename;

Question Stats

Latest activity: earlier.
This question has 6 answers.

BECOME A GUIDE

Share your knowledge and help people by answering questions.