C-Sharp | Java | Python | Swift | GO | WPF | Ruby | Scala | F# | JavaScript | SQL | PHP | Angular | HTML
MySQL ELT() FunctionElt() function is a Sring function of MySQL. This method Nth element from the list of string. Syntaxselect elt(N,str1,str2,str3,...) Example 1select elt(3,'this','is','TheDeveloperBlog','website') Output: Example 2select elt(4,'my','sql','string','function') Output:
Next TopicMySQL String
|