How To Select Data Using Like From Oracle Database Tutorial Example
Run MS-DOS command prompt then copy & paste the below code to select data using LIKE 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 * FROM test WHERE TestName LIKE '%Su%';
-- that's it!! all rows and all columns of Oracle database table "test"
-- whose Name has the string "Su" have been selected
-- is comment in Oracle
-- in fact it is comment in MSSQL and MySQL as well
How To Select Data Using Like From Oracle Database Tutorial Example - Result in MS-DOS SQLPLUS Client Tools
Related Tutorial Examples
- How To Descending Sort/Order Data IN 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 IF() Function Number Value Example
- How To Find MySQL SERVER VERSION Information
- Operator precedence in SQL Command MySQL Example
- 19 Examples to Learn MySQL
- 20 Steps to Learn CakePHP by Example
- UNIX Command Example: ps - Display Process List Information

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