1

タイムブッキングシステムのためにいくつかのテーブルを結合しようとして問題が発生しました。

データベースは次のようになります。

データベーステーブル:

tbl_events

- int_eventID (INT)
- int_serviceID (INT)
- date_eventDueDate (DATETIME)
- date_eventCreationDate (DATETIME)
- int_userID (INT)
- int_customerID (INT)
- int_eventOnlineBooked (INT)

tbl_customers

- int_customerID (INT)
>>> - int_userID (INT) <= this one gives me headache << 
- str_customerFirstName (VARCHAR)
- str_customerLastName (VARCHAR)
- str_customerEmail (VARCHAR)
- str_customerPassword (VARCHAR)
- str_customerCellPhone (VARCHAR)
- str_customerHomePhone (VARCHAR)
- str_customerAddress (VARCHAR)

tbl_services

int_serviceID (INT)
str_serviceName (VARCHAR)
str_serviceDescription (VARCHAR)
int_servicePrice (INT)
int_serviceTimescale (TIME)

tbl_users

int_userID   (INT)
str_userFirstName (VARCHAR)
str_userLastName (VARCHAR)
str_userEmail (VARCHAR)
str_userPassword (VARCHAR)
str_userCellPhone (VARCHAR)

SQLクエリで期待どおりに機能するすべてのものがあります(以下を参照)。特定の週の特定の「ユーザー」のすべてのイベントが表示されます。

SQLクエリ:

SELECT  int_customerID as customerID,
    int_serviceID as serviceID,
    int_eventID as eventID,
    date_eventDueDate as eventDueDate,
    date_eventCreationDate as eventCreationDate,
    int_eventOnlineBooked as eventOnlineBooked,
    str_serviceName as serviceName,
    int_serviceTimescale as serviceTimescale,
    str_customerFirstName as customerFirstName,
    str_customerLastName as customerLastName,
    str_customerCellPhone as customerCellPhone,
    str_customerHomePhone as customerHomePhone
FROM tbl_events
JOIN tbl_services USING (int_serviceID)
JOIN tbl_customers USING (int_customerID)
WHERE
int_userID = 1 AND
YEARWEEK(date_eventDueDate,1) = 201219

問題は、その顧客が属するユーザーを指定する列がtbl_customersテーブルになかったことです。「int_userID」をtbl_customersに追加すると、SQLが動作を停止し、エラーメッセージが表示されました。

<b>Warning</b>:  mysql_num_rows() expects parameter 1 to be resource, boolean given in     <b>/Library/WebServer/Documents/calendar/api/calender_getWeekGetEvents.php</b> on line <b>46</b><br />

46行目:

if(mysql_num_rows($result)) {
    while($event = mysql_fetch_assoc($result)) {
        $events[] = $event;
    }
}

何か案は?:)

ありがとう/L

4

2 に答える 2

3

列名が衝突している場合は、それを使用するテーブルを指定してみてください。

...
WHERE
tbl_Events.int_userID = 1 AND
...
于 2012-05-17T09:45:58.440 に答える
1

複数のテーブルで同じフィールド名が使用されているJOINクエリでは、テーブル名にエイリアスを使用することをお勧めします。

于 2012-05-17T09:47:55.943 に答える