1-- Inserts a new user into the database 2insert into public.user_account as u 3( 4 full_name, 5 registration, 6 phone, 7 email, 8 password_hash, 9 user_role 10) 11values ($1, $2, $3, $4, $5, $6) 12returning u.id;