VisibilityUnlisted - anyone with the share link can access
Contributorsunghyeon
CreatedTuesday September 24, 2019
Modules 0
Prerequisite SQL
create table test1(
c1 number,
c2 number
);
insert into test1 values(1,2);
insert into test1 values(3,3);
insert into test1 values(5,4);
insert into test1 values(7,5);
select * from test1;