Search Results

3
votes

Get the last day of the month in SQL

You could get the days in the date by using the DAY() function: dateadd(day, -1, dateadd(month, 1 …
0
votes

Randomly selecting a limited number of records with two conditions in MySQL

Use a union: SELECT * FROM table WHERE priority = 'high' ORDER BY RAND() LIMIT 8 UNION ALL SELECT * FROM table WHERE priority = 'low' ORDER BY RAND() LIMIT 2 …