1
0.92 ms
SELECT t0 . id AS id_1 , t0 . email AS email_2 , t0 . roles AS roles_3 , t0 . password AS password_4 , t0 . firstname AS firstname_5 , t0 . lastname AS lastname_6 , t0 . nif AS nif_7 , t0 . stats AS stats_8 , t0 . company_name AS company_name_9 , t0 . company_number AS company_number_10 , t0 . created_at AS created_at_11 , t0 . updated_at AS updated_at_12 , t0 . phone_number AS phone_number_13 , t0 . message AS message_14 , t0 . is_verified AS is_verified_15 , t0 . verification_token AS verification_token_16 , t0 . prefix AS prefix_17 , t0 . adress AS adress_18 , t19 . id AS id_20 , t19 . created_at AS created_at_21 , t19 . updated_at AS updated_at_22 , t19 . user_id AS user_id_23 , t0 . country_id AS country_id_24 FROM user t0 LEFT JOIN cart t19 ON t19 . user_id = t0 . id WHERE t0 . email = ? LIMIT 2
Parameters :
[
"zekezetien@aol.com "
]
SELECT t0 . id AS id_1 , t0 . email AS email_2 , t0 . roles AS roles_3 , t0 . password AS password_4 , t0 . firstname AS firstname_5 , t0 . lastname AS lastname_6 , t0 . nif AS nif_7 , t0 . stats AS stats_8 , t0 . company_name AS company_name_9 , t0 . company_number AS company_number_10 , t0 . created_at AS created_at_11 , t0 . updated_at AS updated_at_12 , t0 . phone_number AS phone_number_13 , t0 . message AS message_14 , t0 . is_verified AS is_verified_15 , t0 . verification_token AS verification_token_16 , t0 . prefix AS prefix_17 , t0 . adress AS adress_18 , t19 . id AS id_20 , t19 . created_at AS created_at_21 , t19 . updated_at AS updated_at_22 , t19 . user_id AS user_id_23 , t0 . country_id AS country_id_24 FROM user t0 LEFT JOIN cart t19 ON t19 . user_id = t0 . id WHERE t0 . email = 'zekezetien@aol.com' LIMIT 2 ;
Copy
3
0.54 ms
INSERT INTO user (email , roles , password , firstname , lastname , nif , stats , company_name , company_number , created_at , updated_at , phone_number , message , is_verified , verification_token , prefix , adress , country_id ) VALUES (? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? )
Parameters :
[
"zekezetien@aol.com "
"["ROLE_USER"] "
"$2y$13$Y.b8u6xb8K0tWHQ/jhoVme1VeFgMM1xL6uDbXqJlS4iFyEC/dCLPq "
"ezemiedlyp "
"lqongyyqou "
null
null
null
null
"2025-06-16 22:29:11 "
"2025-06-16 22:29:11 "
null
null
0
"4304b59a9c3d6b20fe38f6fab61f6384324a8b72effc9370701e89db959fe439 "
null
null
null
]
INSERT INTO user (email , roles , password , firstname , lastname , nif , stats , company_name , company_number , created_at , updated_at , phone_number , message , is_verified , verification_token , prefix , adress , country_id ) VALUES ('zekezetien@aol.com' , '[\"ROLE_USER\"]' , '$2y$13$Y.b8u6xb8K0tWHQ/jhoVme1VeFgMM1xL6uDbXqJlS4iFyEC/dCLPq' , 'ezemiedlyp' , 'lqongyyqou' , NULL , NULL , NULL , NULL , '2025-06-16 22:29:11' , '2025-06-16 22:29:11' , NULL , NULL , 0 , '4304b59a9c3d6b20fe38f6fab61f6384324a8b72effc9370701e89db959fe439' , NULL , NULL , NULL );
Copy