You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
id NUMBER GENERATED BY DEFAULT ON NULL AS IDENTITY,
joke VARCHAR2(8168) NOT NULL,
PRIMARY KEY (id)
);
select * from jokes;
-- select count(*) from jokes;
-- commit;
CREATE TABLE "JOKES"."JOKES"
( "ID" NUMBER GENERATED BY DEFAULT ON NULL AS IDENTITY MINVALUE 1 MAXVALUE 9999999999999999999999999999 INCREMENT BY 1 START WITH 1 CACHE 20 NOORDER NOCYCLE NOKEEP NOSCALE ,