Table contains the following columns:
timestamp, date, customer_id, page_id
For example, query is:
- for each customer, identify the first "
page_id" that customer visited most recent day.
If there is a "read-only access" database. Are queries written differently?
Thanks in advance.
CodePudding user response:
Read-only access means you can only read and do query's that can read the database.
You won't be able to insert,update or drop tables.
