| 1 |
2.45 ms |
SELECT t0.id AS id_1, t0.nom_artiste AS nom_artiste_2, t0.bio AS bio_3, t0.image_url AS image_url_4, t0.created_at AS created_at_5, t0.email AS email_6, t0.tel AS tel_7, t0.facebook_link AS facebook_link_8, t0.instagram_link AS instagram_link_9, t0.tiktok_link AS tiktok_link_10, t0.ville_id AS ville_id_11 FROM artiste t0 WHERE t0.id = ?
SELECT t0.id AS id_1, t0.nom_artiste AS nom_artiste_2, t0.bio AS bio_3, t0.image_url AS image_url_4, t0.created_at AS created_at_5, t0.email AS email_6, t0.tel AS tel_7, t0.facebook_link AS facebook_link_8, t0.instagram_link AS instagram_link_9, t0.tiktok_link AS tiktok_link_10, t0.ville_id AS ville_id_11 FROM artiste t0 WHERE t0.id = 1;
|
| 2 |
0.78 ms |
SELECT a0_.id AS id_0, a0_.nom_artiste AS nom_artiste_1, a0_.bio AS bio_2, a0_.image_url AS image_url_3, a0_.created_at AS created_at_4, a0_.email AS email_5, a0_.tel AS tel_6, a0_.facebook_link AS facebook_link_7, a0_.instagram_link AS instagram_link_8, a0_.tiktok_link AS tiktok_link_9, a0_.ville_id AS ville_id_10 FROM artiste a0_ WHERE a0_.id IN (?)
SELECT a0_.id AS id_0, a0_.nom_artiste AS nom_artiste_1, a0_.bio AS bio_2, a0_.image_url AS image_url_3, a0_.created_at AS created_at_4, a0_.email AS email_5, a0_.tel AS tel_6, a0_.facebook_link AS facebook_link_7, a0_.instagram_link AS instagram_link_8, a0_.tiktok_link AS tiktok_link_9, a0_.ville_id AS ville_id_10 FROM artiste a0_ WHERE a0_.id IN ('1');
|
| 4 |
2.13 ms |
INSERT INTO reservation (location, event_type, event_date, event_time, full_name, email, phone, guests, notes, status, created_at, updated_at, duration, artiste_id) VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?)
Parameters: [
"geneve"
"club"
"2026-02-14"
"23:00:00"
"junior junior"
"juniorcmr@gmail.com"
"0102030405"
120
null
"pending"
"2026-01-16 09:00:31"
null
"5"
1
]
INSERT INTO reservation (location, event_type, event_date, event_time, full_name, email, phone, guests, notes, status, created_at, updated_at, duration, artiste_id) VALUES ('geneve', 'club', '2026-02-14', '23:00:00', 'junior junior', 'juniorcmr@gmail.com', '0102030405', 120, NULL, 'pending', '2026-01-16 09:00:31', NULL, '5', 1);
|