You are on page 1of 1

SELECT start_date, TO_CHAR (start_time, 'HH24:MI:SS'), price,

end_date, TO_CHAR (end_time, 'HH24:MI')


FROM price_history;
select *from price_history;

update price_history
set end_date = NULL;

select *from price_history


order by price asc;
select systimestamp from dual;
select time from dual;

SELECT TO_CHAR(sysdate,'HH:MM:ss')
FROM dual;

select *from customers_addresses;

update customers_addresses
set address_line_1 = '-'
where id='ca0101';

You might also like