MySQL: Count occurrences of words in a column
This is an article to document how to output the most frequently used words in a MySQL database column. How? Note this only applies to MySQL.
Read noteKnowledge base / Since 1999
Practical solutions and technical notes from CRM platforms, workflow automation, APIs, databases and the systems around them.
75 entries / Databases
Clear filters
This is an article to document how to output the most frequently used words in a MySQL database column. How? Note this only applies to MySQL.
Read note
Sometimes it is critical to ensure a group of queries are all executed successfully to maintain the integrity of our data. Let's say we have a banking app where we need to subtract funds from one account and add funds to another: $mysqli->query ("UPDATE 'accounts' SET 'balance' = 'balance'-1000000 WHERE 'user' = 'Bob'"...
Read note
A quick article on how to trim in MySQL along with getting rid of any leading or trailing tab characters.
Read note
A quick article showing my MySQL statement when I want to remove all the accents from foreign characters and return the English equivalent.
Read note
A quick article on how to populate a database column from another table using a string comparison.
Read note
These were in a solution and I thought I'd note them on my site so I can refer to them more easily. How?
Read note
This is a quick article on how to get around the problem of backing up your MySQL database when attempting to "Data Export" using MySQL Workbench. This is not regarding the connection issue as I can connect to my database using MySQL Workbench (I have enabled the old authentication protocol). The error ONLY appears whe...
Read note
So this is an article exploring how to convert UPPERCASE text into mixed case. The feed is originally for a personnel feed so it won't be converting long paragraphs of English text. Instead it will be applied to names and addresses as well as job titles and departments.
Read note
This took me a while to find so I've posted an article below detailing how to parse or extract values from a string containing XML code.
Read noteWorking principle
This site exists as a practical knowledge base built from real-world experience across systems, platforms, and technologies since 1999. Much of the content documents solutions, edge cases, and working patterns that were learned through investigation where documentation was incomplete or absent, and is shared to reduce the same friction for others.
Protected notes
Most articles are public. Login is reserved for selected implementation notes.