How To Select Specific Rows From Oracle Database Tutorial Example
Run MS-DOS command prompt then copy & paste the below code to select specific rows from a table in Oracle Database Server Tutorial Example
-- CONNECT as TUTORIAL -- i am using sqlplus as client. you can use anything as you like.
SELECT TestName, TestAge FROM test WHERE TestAge=30;
-- that's it!! TestName, TestAge columns of TestAge=30 of Oracle database table "test" has been selected
-- is comment in Oracle
-- in fact it is comment in MSSQL and MySQL as well
How To Select Specific Rows From Oracle Database Tutorial Example - Result in MS-DOS SQLPLUS Client Tools
Related Tutorial Examples
- How To Select Specific Columns From Oracle Database Tutorial Example
- How To Select Data Using Like From Oracle Database Tutorial Example
- How To Use ROWNUM In Oracle Database Tutorial Example
- How To Use IS NULL In Oracle Database Tutorial Example
- How To Use IS NOT NULL In Oracle Database Tutorial Example
- How To Ascending Sort/Order Data In Oracle Database Tutorial Example
- MySQL NULL to Zero Value Example
- MySQL IFNULL() Function Example Using PHP
- How to Drop Column From MySQL Existing Table Example
- 19 Examples to Learn MySQL
- UNIX Command Example: grep - Searching word or string in file or content
- UNIX Command Example: cat - Read file(s)

No comments:
Post a Comment
leave your comments here..