SQL_CALC_FOUND_ROWS command fetch row count without limit December 31, 2010 select SQL_CALC_FOUND_ROWS from <tablename> where flag = 1 limit 10 and then select found_rows(); Share Get link Facebook X Pinterest Email Other Apps Share Get link Facebook X Pinterest Email Other Apps Comments
Splitting Comma-Separated Values In MySQL March 25, 2022 CREATE TABLE numbers (n INT); INSERT INTO numbers VALUES (1), (2), (3), (4), (5), (6), (7), (8), (9), select id, substring_index( substring_index(email_recipients, ',', n), ',', -1 ) as email from dashboards join numbers on char_length(email_recipients) - char_length(replace(email_recipients, ',', '')) >= n - 1 Reference Site : https://www.sisense.com/blog/splitting-comma-separated-values-in-mysql/ Read more
Custom Sorting Array List in PHP September 01, 2022 <?php $order = array("Z","Srilanka","34", "Canada", "India", "USA"); $array = array( array('id' => 7867867, 'title' => 'USA'), array('id' => 3452342, 'title' => 'India'), array('id' => 1231233, 'title' => 'Srilanka'), array('id' => 5867867, 'title' => 'Z'), ); usort($array, function ($a, $b) use ($order) { $pos_a = array_search($a['title'], $order); $pos_b = array_search($b['title'], $order); return $pos_a - $pos_b; }); print_r($array); ?> Read more
Comments
Post a Comment