But what about projects where change is constant, or where making changes to accommodate but keeping the old stuff as already formatted is needed? That is a perfect case for the MySQL Document Store.
MySQL w/o SQL
So you can connect to the server, create a schema, create a document collection, and store data without once using SQL.This video shows you a simple example of doing just that! I connected to a MySQL server running 8.0.19 using the new MySQL Shell (mysqlsh) using an account I set up earlier and for security reasons you still need someone with a semblance of DBA skills for setting up an account with CREATE USER <user>@<host> IDENTIFIED BY <password> and GRANT ALL ON <shcma>,* to <user>@<host> or the MySQL Workbench equivalent.
After the login, I typed session to see the detail on the session. Next I created a schema with the session.createSchema() operator. So the schema was created without Structured Query Language,
Next I needed to point the db object to that new schema and you can use either the \use command or session.setCurrentSchema()to do just that.
Now we need a document collection and to create one use db.createCollection() and from there it is easy to use add() to store data.
Commands Used
myssqlsh demo@localhostsession
session.getSchemas()
session.createSchema('demo')
\use demo ( or session.setCurrentSchema('demo') )
db
db.getCollections()
db.createCollection('dave')
db.dave.add( { name : "Dave", "demo" : "Working!" })
db.dave.find()