About 67,800 results
Open links in new tab
  1. MySQL LPAD () Function - W3Schools

    Definition and Usage The LPAD () function left-pads a string with another string, to a certain length. Note: Also look at the RPAD () function. Syntax LPAD (string, length, lpad_string)

  2. MySQL LPAD

    You will learn how to use the MySQL LPAD () function to left-pad a string with a specific set of characters to a specified length.

  3. LPAD - Oracle Help Center

    LPAD returns expr1, left-padded to length n characters with the sequence of characters in expr2. This function is useful for formatting the output of a query. Both expr1 and expr2 can be any of …

  4. SQL LPAD Function

    You'll learn how to use the SQL LPAD function to pad a specified set of characters on the left of a string to a certain length.

  5. MySQL LPAD () Function: Usage & Examples - DataCamp

    The `LPAD ()` function in MySQL is used to pad the left side of a string with a specified character until the string reaches a defined length. This function is useful for formatting output and …

  6. A Complete Guide to the MySQL LPAD () Function - sqliz.com

    Jun 26, 2025 · In this guide, we’ll break down how LPAD() works, explore its syntax, and walk through practical examples to help you master its use in real-world scenarios. The LPAD() …

  7. Oracle LPAD Function

    This tutorial shows you how to use the Oracle LPAD () function to left-pad a string by specified characters to a certain length.

  8. How the LPAD () Function Works in MySQL - Database.Guide

    Jan 24, 2019 · In MySQL, the LPAD() function allows you to pad the left part of a string with one or more characters. The way it works is, you specify the string to pad, the length of the …

  9. MySQL: LPAD Function - TechOnTheNet

    This MySQL tutorial explains how to use the MySQL LPAD function with syntax and examples. The MySQL LPAD function returns a string that is left-padded with a specified string to a …

  10. LPAD - Left-Pad String - Oracle to SQL Server Migration

    In Oracle, LPAD function left-pads a string to the specified length with the specified characters. Note that the string is truncated if it already exceeds the specified length.