Jump to content
Fórum Script Brasil
  • 0

Auxílio em criação de consulta


semcriatividade

Question

Olá pessoal

Estou tentando criar uma consulta aqui, depois de diversas tentativas infrutíferas vim pedir ajuda à vocês

Tenho basicamente a seguinte estrutura:

create table Hospitais(
    Código integer unique auto_increment not null,
    Nome char(50) not null,
    primary key (Código));

create table Enfermarias(
    Código integer unique auto_increment not null,
    Nome char(50) not null,
    Hospital integer not null,
    primary key (Código),
    foreign key (Hospital) references Hospitais (Código));

create table Internação(
    Código integer not null unique auto_increment,
    Paciente integer not null,
    Enfermaria integer not null,
    primary key (Código, Paciente, Enfermaria),
    foreign key (Paciente) references Pacientes (Num_Reg),
    foreign key (Enfermaria) references Enfermarias (Código));    
    
create table Consultas (
    Código integer not null auto_increment,
    Médico char(15) not null,
    Paciente integer not null,
    Hospital integer not null,
    primary key (Código),
    foreign key (Médico) references Médicos (CPF),
    foreign key (Paciente) references Pacientes (Num_Reg),
    foreign key (Hospital) references Hospitais (Código));

Preciso criar uma consulta que retorne os hospitais mais frequentados e a enfermaria mais movimentada de cada hospital.

Estou tentando faz um tempão criar isso, mas não estou conseguindo, alguém tem uma luz?

Link to comment
Share on other sites

1 answer to this question

Recommended Posts

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Answer this question...

×   Pasted as rich text.   Paste as plain text instead

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.



  • Forum Statistics

    • Total Topics
      152.2k
    • Total Posts
      652k
×
×
  • Create New...