Ben mysql ve veritabanları için çok yeni, o yüzden burada yardıma ihtiyacım var ...
Sadece verilen değişken ad_id
olduğunda nasıl, aşağıdaki tablodan bir kaydı almak için JOIN kullanmalıyım?
category and category options are filled in manually i.e. the users may not alter them. So they are only reference tables, but I am not sure this is how I should do it... I have 6 tables:
category:
cat_id (PK)
cat_name
category_options:
option_id (PK)
cat_id (FK)
option_name
option_value:
value_id (PK) (AI) // I think this should have Auto Increment
option_id (FK)
classified_id (FK)
value
classified: (THIS IS THE MAIN TABLE YOU COULD SAY)
classified_id (PK) (AI)
ad_id
cat_id
headline
description
area: // I am thinking about moving these fields over to the posters table, right?
area_id (PK)
classified_id (FK)
area
description
İşte tablolar halinde bir ilan eklemek nasıl:
mysql_query("INSERT INTO classified (ad_id, cat_id, headline, description) VALUES ('$ad_id', $cat_id, '$headline', '$description')");
$last_classified_id=mysql_insert_id();
mysql_query("INSERT INTO poster (classified_id, name, email, tel) VALUES ($last_classified_id, '$name', '$email', '$tel')");
mysql_query("INSERT INTO area (classified_id, area, community) VALUES ($last_classified_id, '$area', '$community')");
Ben JOIN yeni duyuyorum!
Every category has sub options (CARS -> color) and every option has a value. I want to, only by having the ad_id, select all this information.
Ben bu yüzden nasıl yapabilirim?
And should I merge the area and posters table? Also, please take a careful look at my db, and tell me if there is anything I might have missed...
Bu gerçekten benim bilgi-tabanı dışında çok detaylı açıklamalar takdir edilmektedir!
Teşekkürler