私は、次の表を作成しました:私の問題があるMySQLで特定の人を選択するには?
insert into people(ID, name)
values('fdx1','Peter');
insert into people(ID, name)
values('fdx2','Alice');
insert into people(ID, name)
values('fdx3','Louis');
insert into numbers(code, ID, number)
values('001','fdx1',1);
insert into numbers(code, ID, number)
values('002','fdx1',1);
insert into numbers(code, ID, number)
values('003','fdx2',2);
insert into numbers(code, ID, number)
values('004','fdx2',3);
insert into numbers(code, ID, number)
values('005','fdx3',4);
insert into numbers(code, ID, number)
values('006','fdx3',4);
:同じ番号を持っている人を選択する方法
create table people
(
ID varchar(10),
name varchar(35),
CONSTRAINT pk_ID PRIMARY KEY (ID)
);
create table numbers
(
code varchar(10),
ID varchar(10),
number numeric,
CONSTRAINT pk_code PRIMARY KEY (code)
);
を私は次の件のデータを挿入します。たとえば、 "Peter"や "Louis"などです。
答えをあなたに@Gordon Linoffありがとうございます。しかし、数字ではなく文字列であれば、それをどうやって行うのですか? – Python241820
@ Python241820。 。 。私はあなたの質問を理解していません。これは、文字列を含むほぼすべてのデータ型で機能します。 –