I want to get/select a particular element in a row. How can i do that for Oracle 11g, sql server and mysql ?
eg. id - name - address
1 - abc - def
2 - adl - eio
3 - yuc - pwr
Select/display adl, ie 2nd row name column.
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
with a particular element do you mean a field ?
in all of them, is the same way: Standard ANSI SQL. For example:
This will get from the table the row with Id = 1
and then, show you the field you want. You could put more fields, if you want to show more, or
*to show all of them