How do I create a table alias in MySQL

后端 未结 7 788
忘了有多久
忘了有多久 2020-12-05 23:08

I am migrating an MS Access application (which has linked tables to a MSSQL Server) to MySQL.

As a means to overcome some MSAccess table naming problems, I am seeki

7条回答
  •  没有蜡笔的小新
    2020-12-05 23:34

    I always rename my "linked to SQL" tables in Access from

    {dbo_NAME} to {NAME}.

    The link creates the table name as {dbo_NAME} but access occasionally has problems with the dbo_ prefix.

提交回复
热议问题