Jag har följande:
t_poll
- pk_id
- f_week
- f_que
t_answ
- pk_id
- f_que_id
- f_answ
- f_votes
och jag vill ha ut f_que ur t_poll och alla f_answ och alla f_votes som hör ihop ......kan nån hjälpa mig?
mvh icaaq
1 svar · 229 visningar · startad av icaaq
Jag har följande:
t_poll
t_answ
och jag vill ha ut f_que ur t_poll och alla f_answ och alla f_votes som hör ihop ......kan nån hjälpa mig?
mvh icaaq
nånting sånt här?
select p.f_que, a.f_answ, a.f_votes from t_poll p, t_answ a where p.pk_id=a.f_que_id
mvh,