Is there a way I can make mysql be case sensitive using a search where x likes "% #%";
Try the following:
SELECT * FROM <table> WHERE <column> COLLATE latin1_bin LIKE '%No.%'
You can change the type of column:
create table my_table (case_sensitive_column VARCHAR(10)) CHARACTER SET latin1 COLLATE latin1_bin;
EDIT In fact, jwsample's answer is better, because you do not need to modify the table.
http://sqlserver2000.databases.aspfaq.com/how-can-i-make-my-sql-queries-case-sensitive.html
http://aspadvice.com/blogs/ssmith/archive/2007/09/30/Case-Sensitive-or-Insensitive-SQL-Query.aspx
Source: https://habr.com/ru/post/1758107/More articles:BASH - reading in a configuration file with multiple instances of the same "variable" - arraysjQuery draggable: access an item being dragged while dragging - jquery-uiВнедрение API пользовательского интерфейса Google через Greasemonkey - javascriptHow to activate an external application window - c ++refresh part of HTML page with jquery - jqueryHow to convert n arrays of length m to m arrays of length n? - ruby | fooobar.comWhy is the following program giving an error? - c ++iPhone Dev, background color UITableView - colorsBuggy Behavior Using Canvas? - javascriptSoftware Definition of NSSegmentedCell - objective-cAll Articles