1 |
2.31 ms |
SELECT t0.is_verified AS is_verified_1, t0.firstname AS firstname_2, t0.lastname AS lastname_3, t0.email AS email_4, t0.roles AS roles_5, t0.password AS password_6, t0.id AS id_7, t8.phone AS phone_9, t8.loc_country AS loc_country_10, t8.loc_state AS loc_state_11, t8.loc_city AS loc_city_12, t8.loc_address AS loc_address_13, t8.last_login AS last_login_14, t8.started AS started_15, t8.driver_num AS driver_num_16, t8.bio AS bio_17, t8.show_contact AS show_contact_18, t8.show_profile AS show_profile_19, t8.driver AS driver_20, t8.owner AS owner_21, t8.id AS id_22, t8.created_at AS created_at_23, t8.updated_at AS updated_at_24, t8.user_id AS user_id_25 FROM user t0 LEFT JOIN user_profile t8 ON t8.user_id = t0.id WHERE t0.email = ? LIMIT 2
Parameters: [
"wfurtney@gmail.com"
]
SELECT t0.is_verified AS is_verified_1, t0.firstname AS firstname_2, t0.lastname AS lastname_3, t0.email AS email_4, t0.roles AS roles_5, t0.password AS password_6, t0.id AS id_7, t8.phone AS phone_9, t8.loc_country AS loc_country_10, t8.loc_state AS loc_state_11, t8.loc_city AS loc_city_12, t8.loc_address AS loc_address_13, t8.last_login AS last_login_14, t8.started AS started_15, t8.driver_num AS driver_num_16, t8.bio AS bio_17, t8.show_contact AS show_contact_18, t8.show_profile AS show_profile_19, t8.driver AS driver_20, t8.owner AS owner_21, t8.id AS id_22, t8.created_at AS created_at_23, t8.updated_at AS updated_at_24, t8.user_id AS user_id_25 FROM user t0 LEFT JOIN user_profile t8 ON t8.user_id = t0.id WHERE t0.email = 'wfurtney@gmail.com' LIMIT 2;
|
2 |
0.73 ms |
SELECT t0.image AS image_1, t0.make AS make_2, t0.model AS model_3, t0.year AS year_4, t0.engine AS engine_5, t0.description AS description_6, t0.number AS number_7, t0.id AS id_8, t0.driver_id AS driver_id_9, t0.owner_id AS owner_id_10 FROM `car` t0 WHERE t0.driver_id = ?
SELECT t0.image AS image_1, t0.make AS make_2, t0.model AS model_3, t0.year AS year_4, t0.engine AS engine_5, t0.description AS description_6, t0.number AS number_7, t0.id AS id_8, t0.driver_id AS driver_id_9, t0.owner_id AS owner_id_10 FROM `car` t0 WHERE t0.driver_id = 468;
|