0% found this document useful (0 votes)
75 views1 page

SQL Users

The document contains a SQL query result displaying user information from the 'users' table in the Furni_WebApp_DB database. It includes details such as user IDs, first and last names, email addresses, hashed passwords, and staff status for a total of 9 users. The users listed have varying staff statuses, with some marked as staff (1) and others as non-staff (0).
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as TXT, PDF, TXT or read online on Scribd
0% found this document useful (0 votes)
75 views1 page

SQL Users

The document contains a SQL query result displaying user information from the 'users' table in the Furni_WebApp_DB database. It includes details such as user IDs, first and last names, email addresses, hashed passwords, and staff status for a total of 9 users. The users listed have varying staff statuses, with some marked as staff (1) and others as non-staff (0).
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as TXT, PDF, TXT or read online on Scribd
You are on page 1/ 1

MariaDB [Furni_WebApp_DB]> select * from users;

+----+------------+-----------+-------------------------
+--------------------------------------------------------------+----------+
| id | first_name | last_name | email | password
| is_staff |
+----+------------+-----------+-------------------------
+--------------------------------------------------------------+----------+
| 2 | Kamel | Mossab | [email protected] |
$2a$10$J4yap5ZxviliZO9jBCuSdeD.7LzL3/njVpNhnG85HCcwA05ulUrzW | 0 |
| 4 | Lorra | Barker | [email protected] |
$2a$10$DgUDWpxipW2Yt7UcKxzvweB7FXoV/LFxlJG8yuL56NyUMMLr5uBuK | 0 |
| 5 | Martin | Wood | [email protected] |
$2a$10$3LDYl5QEt4K4u8vLWMGH8eDA/fNKVquhHNbyijaDzzueKHAwi6bHO | 0 |
| 8 | Roberto | Dalton | [email protected] |
$2a$10$4TLCSlEfYrNDFfPDQ5z4p.S6gImA8NKAGn2tyqLJyG71l9iQoTDhu | 0 |
| 9 | Miranda | Wise | [email protected] |
$2a$10$T4L873JALnbXH10tq.mEbOOVYmZPLlBBSeD1h2hqAeX6nbTDXMyqm | 1 |
| 10 | Oscar | Dalton | [email protected] |
$2a$10$ye9a40a7KOyBJKUai2qxY.fcfVQGlFTM3SVSVcn82wxQf/2zYPq96 | 1 |
| 11 | Nya | Dalton | [email protected] |
$2a$10$GZQOgzb4N1xVs3ALpnuqGeId5/mZLL8pv5GlkRzJfxdFxO/JIkIaK | 1 |
| 12 | lucas | carols | [email protected] |
$2a$10$J93xmU0.yP0/oZmoV9K4u.XvYHtl.kunSX9xoe2RACqKcitM4OjlC | 0 |
| 15 | shat | shat | [email protected] |
$2a$10$kyEoWynore2ufPIdySoXTOQ3ZZwgo7sQG1TBhgGCXM9NObTSWvF3i | 0 |
+----+------------+-----------+-------------------------
+--------------------------------------------------------------+----------+
9 rows in set (0.001 sec)

You might also like