SQL - Parameter (Bind | Substitution) (Marker | Variable)
A parameter is placeholder in a prepared statement where value of data is replaced at runtime (ie when the program is running). It permits to reuse the same statement with different value. See A parameter...