tell me about select query
tell me about select query
Know the answer? Post it — somebody with the same question will find it here.
Sign in to answer this question
It is the same account you read, post and publish with — and you will come straight back to this page.
Shivanand ArurPosted Sep 18, 2012, 2:47 AM
Examples -
Select * from TableName // will give you result of all the content in that table.
Select [column-name] from Table Name // Will show you the content of that specific column // of that table
You can even select multiple columns at the same time from a table or multiple tables....
The basic use of a Select query is to fetch results from a table or multiple tables...
Hope this is what you wanted to know.
Thank You.
Shivanand Arur.