Función PostgreSQL-LPAD

LPAD()

LPAD(string, length[, fill])

Analicemos la sintaxis anterior:

  • El argumento de la string

LPAD()

SELECT LPAD('GeeksforGeeks', 15, '*');

Ejemplo 2:

LPAD()

SELECT first_name || ' ' || last_name fullname,
    SUM(amount) total,
    LPAD('*', CAST(TRUNC(SUM(amount) / 10) AS INT), '*') chart
FROM payment
INNER JOIN customer using (customer_id)
GROUP BY customer_id
ORDER BY SUM(amount) DESC;

Producción:

Publicación traducida automáticamente

Artículo escrito por RajuKumar19 y traducido por Barcelona Geeks. The original can be accessed here. Licence: CCBY-SA

Deja una respuesta

Tu dirección de correo electrónico no será publicada. Los campos obligatorios están marcados con *