特定の属性をリストするビューを作成する必要があります。具体的には:SQL結合、挿入?
表Clientemp
-
contact
表Cliente
-
name
、address
表Cliente
の name
とaddress
属性に入る必要があります。 これまでのところ:
create view "Company Clients"
select client.name, cliente.address, clientemp.contact
from cliente, clientemp
insert into clientemp (select name, address from cliente)
これは機能しますか?なにか提案を?
あなたはどのようなRDBMSを使用している( つまり テーブル定義で指定されたデフォルト値を持っていないすべての列。で)? – billinkc
どのデータ要素がClienteをClientempにリンクしていますか? –