Connor and Chris will both be at AI World from October 12 to October 17 , the premier Oracle conference of 2025. If you're in Vegas, please come say Hi or pop into our sessions
Thanks for the question, Manuel.
Asked: January 18, 2018 - 5:30 pm UTC
Last updated: November 06, 2023 - 1:59 pm UTC
Version: 10.1.2
Viewed 1000+ times
create table t as select level x, mod(level, 2) y from dual connect by level <= 10; select * from t; X Y 1 1 2 0 3 1 4 0 5 1 6 0 7 1 8 0 9 1 10 0 rename t to ttab; create or replace view t as select * from ttab where y = 0; select * from t; X Y 2 0 4 0 6 0 8 0 10 0
Carlos Santana, November 06, 2023 - 11:54 am UTC
New to good database design? Check out Chris Saxon's full fundamentals class.