Skip to Main Content

DevOps, CI/CD and Automation

Announcement

For appeals, questions and feedback about Oracle Forums, please email oracle-forums-moderators_us@oracle.com. Technical questions should be asked in the appropriate category. Thank you!

List the room detail where customer have check in after 1-jun-2022

User_VH9ZWApr 4 2022

create table booking_detail
(
booking_id varchar2(10) primary key,
room_id varchar2(10),
cust_id varchar2(10) references customer_detail(cust_id),
checkin_date date,
checkout_date date,
total_amount int
);

--- This is my booking table and how can i write query for it ?
--- How can i use "EXTRACT()" function to retrieve it.

Comments
Post Details
Added on Apr 4 2022
1 comment
174 views