sql >> Database >  >> RDS >> Mysql

MySql - Problemen bij het maken van een weergave

CREATE VIEW contactnotes AS
SELECT contact.ID as id1, log.ID as id2, contact.Name, log.notes
FROM log 
JOIN contact 
ON log.ID = contact.ID

of

CREATE VIEW contactnotes AS
SELECT contact.ID as id1, log.ID as id2, contact.Name, log.notes
FROM log 
INNER JOIN contact USING (ID)



  1. Hoe de resultaten van nodejs te krijgen met behulp van het mysql-pakket?

  2. Login-script wordt niet uitgevoerd - Bluehost

  3. Hoe de Security Advisor MySQL-waarschuwing te repareren

  4. Is er een manier om OrmLite te gebruiken met Postgres hstores?