Just know How to insert date column in Oracle - Cool Videos! #datedatatype

preview_player
Показать описание
Now you guys are known how to insert date column in Oracle!
create table datetable(howtoinsertdate date);
insert into datetable values(2021-01-01);
insert into datetable values('2021-01-01');
insert into datetable values('2021-02-01');
insert into datetable values('2021-06-01');
select * from datetable;

Check my playlist. what i covered till now in oracle!
Рекомендации по теме
Комментарии
Автор

it is not woring in my oracle, not able to add date.

shubhangigangurde