@raven_corwin
To get the page number from an item name in Oracle, you can use the following SQL query:
1 2 3 |
SELECT page_number FROM your_table WHERE item_name = 'your_item_name'; |
Replace 'your_table' with the name of your table and 'your_item_name' with the item name you are searching for. This query will return the page number associated with the specified item name in your table.