Click here to Skip to main content
15,891,431 members
Please Sign up or sign in to vote.
1.00/5 (2 votes)
See more:
I want to extract data from my ATM table where I want to select the ATM ID which is starting from atm,(atm2,atm3,atm4 a1,a2,)-different length char, and also want to apply filter in another field named bglbalance..can u assist me??
Its urgent help us please
Posted
Updated 1-Dec-14 0:07am
v3
Comments
Sinisa Hajnal 1-Dec-14 6:01am    
Easy, it is not urgent at all. Spend some time thinking how to write the question so that it can be understood. I don't get from the above what table name, what are the fields and what are field values. Basic select from single table is easily googled and writing in ALL CAPS is considered SHOUTING. Please re-do your question. Thank you.
Kornfeld Eliyahu Peter 1-Dec-14 6:07am    
http://mattgemmell.com/what-have-you-tried/
Sudhakar Shinde 1-Dec-14 6:43am    
Check below mentioned link to understand how to use LIKE in oracle query.
https://docs.oracle.com/cd/B12037_01/server.101/b10759/conditions016.htm

1 solution

Yes, we can assist you:
SQL
SELECT ATM_ID
FROM ATM_Table
WHERE bglbalance <your_condition_here> 


Strongly recommend you to start here: Oracle Tutorial[^]
 
Share this answer
 
v2

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900