

- Trending Categories
Data Structure
Networking
RDBMS
Operating System
Java
iOS
HTML
CSS
Android
Python
C Programming
C++
C#
MongoDB
MySQL
Javascript
PHP
- Selected Reading
- UPSC IAS Exams Notes
- Developer's Best Practices
- Questions and Answers
- Effective Resume Writing
- HR Interview Questions
- Computer Glossary
- Who is Who
What is the difference between MySQL LOCATE() and FIND_IN_SET() functions?
<p>As we know, both the functions are used to search a string from the arguments provided in them but there are some significant differences between them as follows</p><ul class="list"><li>FIND_IN_SET() function uses the string list that is itself a string containing the substring separated by commas. Whereas, LOCATE() function contains a string from which it will find the position of the first occurrence of the substring if present.</li><li> In LOCATE() function we can manage the starting point of the search by providing an optional argument for a position. Whereas, for FIND_IN_SET() function MySQL do not provide such kind of flexibility and the search would by default starting from 1st string.</li><li> In case of integers, FIND_IN_SET() is much more suitable than LOCATE() function. It can be understood by the following example</li></ul><h4>Example</h4><pre class="prettyprint notranslate">mysql> Select IF(LOCATE(2,'10,11,12,13') > 0,1,0) As result; +--------+ | result | +--------+ | 1 | +--------+ 1 row in set (0.05 sec) mysql> Select IF(FIND_IN_SET(2,'10,11,12,13') > 0,1,0)As Result; +--------+ | Result | +--------+ | 0 | +--------+ 1 row in set (0.00 sec)</pre><p>From the result set of above examples, we can see that LOCATE() function returns 1 even 2 as a string is not present in the arguments. But FIND_IN_SET() function returns 0 which is correct answer.</p>
- Related Questions & Answers
- What is the difference between MySQL INSTR() and FIND_IN_SET() functions?
- What is the difference between CONCAT() and CONCAT_WS() functions?
- What is the difference between functions and methods in JavaScript?
- What is the difference between Python functions datetime.now() and datetime.today()?
- What is the difference between virtual and abstract functions in C#?
- What is the difference between anonymous and inline functions in JavaScript?
- What is the difference between jQuery.map() and jQuery.grep() Functions in jQuery?
- What is the difference between jQuery.map() and jQuery.each() Functions in jQuery?
- What is the difference between ajaxSend() and ajaxStart() functions in jQuery?
- What is the difference between ajaxStop() and ajaxComplete() functions in jQuery?
- What is the difference between ajaxSuccess() and ajaxComplete() functions in jQuery?
- What is the difference between closure and nested functions in JavaScript?
- What is the difference between custom and built-in functions in JavaScript?
- What is the difference between SQL and MySQL?
- How MySQL LOCATE() function is different from its synonym functions i.e. POSITION() and INSTR() functions?
Advertisements