Benim ilk mysql INSERT testleri yaşıyorum ve ben bu tabloları kullanarak ediyorum:
table employees
-> employee_id
-> employee_name
-> employee_surname
-> employee_url
table areas
-> area_id
-> area_city
-> area_address
-> area_country
table agencies
-> agency_id
-> agency_name
-> agency_url
table node_employees
-> node_id
-> employee_id
-> area_id
-> agency_id
I table_employee veri depolamak, table_areas ve table_agency ama ben aynı anda tüm verileri kaydetmek zorunda değilim, o yüzden sonradan bir çalışanın oluşturup, bir ajans ya da bir adres.
Tekil veri ekin bir durumda, böyle bir şey kullanmak gerekir ya da ben, evet, ben bunu nasıl yapabilirim, node_employees doğrudan tabloyu kullanabilirsiniz etmeliyim?
INSERT INTO employees (employee_name, employee_surname, employee_url)
VALUES ('Roger', 'Waters', 'http://pinkfloyd.com')
INSERT INTO agencies (agency_name, agency_url)
VALUES ('Google', 'http://google.com')
INSERT INTO areas (area_city, area_address, area_country)
VALUES ('Rome', 'Via Roma, 123', 'Italy')
To link rows each other I've created node_employees, a relational table. I use it to link an employee with an area or an agency, so what I should do to link data with this relational table?
SELECT employee_id FROM employees WHERE employee_name = 'Roger'
SELECT agency_id FROM agencies WHERE agency_name = 'Google'
// I'll get their ids in php
$php_employee_id
$php_agency_id
// and then
INSERT INTO node_employees (employee_id, agency_id)
VALUES ('$php_employee_id', '$php_agency_id')
Ben bir alana sahip bir çalışanın bağlantı gerekiyorsa ben ne yapmalıyım, başka bir şüphem var? Ben farklı bir sorgu, bu yüzden her olasılığı için bir sorgu kullanmak etmeliyim?
// so, not this
$php_employee_id = 12;
$php_agency_id = 7;
$php_area_id = null;
INSERT INTO node_employees (employee_id, agency_id, area_id)
VALUES ('$php_employee_id', '$php_agency_id', '$php_area_id') // will this remove the previous data with null in area_id?