I have a database stored in MySQL, and I am reading this documentation in how to get this data using prisma:
However, what I don't understand is how to get a specific table.
For example my data base is called "mydb" and I have 2 tables inside named "example1" and "example2". So if I want to get the data from "example1" table how do I do that? Because the way that I understand from the documentation is connecting with my database but how do I connect with my table? What should I add in the URL?
DATABASE_URL="mysql://johndoe:XXX@mysql–instance1.123456789012.us-east-1.rds.amazonaws.com:3306/mydb"