Re: How do I alter an existing column and add a foreign key which isa Primary key to a table?

Поиск
Список
Период
Сортировка
От Ron
Тема Re: How do I alter an existing column and add a foreign key which isa Primary key to a table?
Дата
Msg-id 75125c45-0fed-e5f1-50f0-9646db20dde6@gmail.com
обсуждение исходный текст
Ответ на Re: How do I alter an existing column and add a foreign key whichis a Primary key to a table?  (Karen Goh <karenworld@yahoo.com>)
Ответы Re: How do I alter an existing column and add a foreign key whichis a Primary key to a table?  (Karen Goh <karenworld@yahoo.com>)
Список pgsql-admin
On 7/21/19 10:10 AM, Karen Goh wrote:
>
> On Sunday, July 21, 2019, 11:06:16 PM GMT+8, David G. Johnston 
> <david.g.johnston@gmail.com> wrote:
>
>
> On Sunday, July 21, 2019, Karen Goh <karenworld@yahoo.com> wrote:
>
>
> Is there a way for me to generate an entity table diagram vis pgAdmin4 or 
> PSQL ?
>
>
> Just write the 5 or so tables out in a somewhat compressed format. Psql 
> doesn’t and I don’t know about pgadmin
>
> Here is a compressed format :
>
> s_tutor
> --------
> zipcode(text)
> tutor_id (I just checked this is becomes a 'serial id ?' based on the 
> generated sql
>
> ALTER TABLE public.s_tutor ALTER COLUMN tutor_id ADD GENERATED BY DEFAULT 
> AS IDENTITY (
> SEQUENCE NAME public.tutor_strtutorid_seq
> START WITH 1
> INCREMENT BY 1
> NO MINVALUE
> NO MAXVALUE
> CACHE 1
> );
>
> tutor_subject
> ----------------
> tutor_id
> subject_Names

select s_tutor.zipcode
from s_tutor, tutor_subject
where s_tutor.tutor_id = tutor_subject.tutor_id
   and tutor_subject.subject_names ='Angela Merkel'


-- 
Angular momentum makes the world go 'round.



В списке pgsql-admin по дате отправления:

Предыдущее
От: Karen Goh
Дата:
Сообщение: Re: How do I alter an existing column and add a foreign key whichis a Primary key to a table?
Следующее
От: Karen Goh
Дата:
Сообщение: Re: How do I alter an existing column and add a foreign key whichis a Primary key to a table?