Temat: Usuwanie kolumn z widoku
create table A (a1 int, a2 int, a3 int);
create or replace view V as
select a1, a2, a3 from A;
create or replace view W as
select a1 from V;
PostgreSQL to najbardziej zaawansowany system relacyjnych baz danych Open Source.
Nie jesteś zalogowany. Proszę się zalogować lub zarejestrować.
Strony 1
Zaloguj się lub zarejestruj by napisać odpowiedź
create table A (a1 int, a2 int, a3 int);
create or replace view V as
select a1, a2, a3 from A;
create or replace view W as
select a1 from V;
Posty [ 2 ]
Strony 1
Zaloguj się lub zarejestruj by napisać odpowiedź
[ Wygenerowano w 0.007 sekund, wykonano 10 zapytań ]