C-Sharp | Java | Python | Swift | GO | WPF | Ruby | Scala | F# | JavaScript | SQL | PHP | Angular | HTML
MySQL INSERT() FunctionINSERT(str,pos,len,newstr) is a Sring function of MySQL. In this method, a string str is passed with a position 'pos' which tells at which position the character is to be placed, and 'len' length is the length of the character to be placed i.e string newstr. Syntaxselect INSERT(str,pos,len,newstr); Example 1Select insert('Javanpoint',5,1,'t'); Output: Example 2Select insert('MySql-Function',6,1,'String'); Output:
Next TopicMySQL String
|