Search Results

1
vote
3answers
1k views

How to generate a range of numbers in Mysql

How do I generate a range of consecutive numbers (one per line) from a mysql query so that I can insert them into a table? for example : nr 1 2 3 4 5 I wou …
2
votes

SQL Text Searching, AND Ordering

SELECT * FROM Items WHERE column LIKE '%foo%' OR column LIKE '%bar%' ORDER BY (IF(column LIKE '%foo%',1,0) + IF(column LIKE '%bar%',1,0)) DESC The syntax for if is …