SELECT 'a' = 'A'; -- 1
SELECT BINARY 'a' = 'A'; -- 0
(dev.mysql.com/doc/refman/5.7/en/cast-functions.html#operator_binary)
SELECT 'a' = 'A'; -- 1
SELECT BINARY 'a' = 'A'; -- 0
(dev.mysql.com/doc/refman/5.7/en/cast-functions.html#operator_binary)
SELECT * FROM BATCH_INFO20 WHERE FIND_IN_SET(DATE_FORMAT(NOW(), '%H'), EXEC_HOURS);
(stackoverflow.com/questions/18710921/mysql-find-in-set-with-array-string)
with recursive T as ( select 'a,b,c,d,e,f' as items), N as ( select 1 as n union select n + 1 from N, T where n <= length(items) - length(replace(items, ',', ''))) select distinct substring_index(substring_index(items, ',', n), ',', -1) group_name from N, T
(stackoverflow.com/questions/17942508/sql-split-values-to-multiple-rows)
The question mark means the code is not yet added and committed to your repository
mysql -NB -u root my_database -e 'show create procedure `myProcedure`' |\
xargs -n 1 -d '\t' echo |\
egrep '^CREATE' |\
xargs --null echo -e >