Search
 
SCRIPT & CODE EXAMPLE
 
CODE EXAMPLE FOR SQL

SQL

create or replace view active_toys as
  select * from toys
  where is_deleted = 'N';

select * from active_toys;
Source by livesql.oracle.com #
 
PREVIOUS NEXT
Tagged: #SQL
ADD COMMENT
Topic
Name
7+6 =