How to get page number from item name in oracle?

by raven_corwin , in category: MySQL , a day ago

How to get page number from item name in oracle?

Facebook Twitter LinkedIn Telegram Whatsapp

1 answer

Member

by brandy , 5 hours ago

@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.