php, mysql
« previous entry | next entry »
Feb. 2., 2016 | 06:08 pm
posted by: laielais in pajautaa
Labvakar!
ir divas tabulas A un B savienotas ar "relāciju" saiti, atteicīgi tabulas B identifikatora skaitlis rādās tabulā A.
Kā paveikt to, lai tabulā A tiek atainots tabulas B nosaukums, nevis identifikators?
ir divas tabulas A un B savienotas ar "relāciju" saiti, atteicīgi tabulas B identifikatora skaitlis rādās tabulā A.
Kā paveikt to, lai tabulā A tiek atainots tabulas B nosaukums, nevis identifikators?
from: mako
date: Feb. 2., 2016 - 06:23 pm
#
Atbildēt
from: qgmr101
date: Feb. 2., 2016 - 06:23 pm
#
selektā ar džoinu?
Atbildēt
from: fedrs
date: Feb. 2., 2016 - 06:23 pm
#
Atbildēt
from: mako
date: Feb. 2., 2016 - 06:24 pm
#
Atbildēt
from: src
date: Feb. 2., 2016 - 07:19 pm
#
Var nedaudz palasīt par normālformām
Atbildēt | Diskusija
from: begemots
date: Feb. 2., 2016 - 07:25 pm
#
Atbildēt | Iepriekšējais
from: laielais
date: Feb. 2., 2016 - 09:11 pm
#
Atbildēt | Diskusija
from: savaadaisu
date: Feb. 3., 2016 - 08:38 am
#
select a.id, a.name, b.id, b.name from a left join b on a.id = b.aid;
ir tas pats kas
select a.id, a.name, b.id, b.name from a right join b on b.aid = a.id;
Atbildēt | Iepriekšējais | Diskusija
from: bax55hqy8dlb
date: Feb. 5., 2016 - 05:37 pm
#
P.S. pilnīgi vienalga vai joinam tu norādi on a.id=b.parent_id vai b.parent_id=a.id
Atbildēt | Iepriekšējais
from: bax55hqy8dlb
date: Feb. 5., 2016 - 05:39 pm
#
Atbildēt | Iepriekšējais