Difference between Access and MySQL

Ask a Question related to Coldfusion Database Access, Design and Development.

  1. #1

    Default Difference between Access and MySQL

    I migrate an application from Access to MySQL,
    and then I have this error now :

    SQL Syntax error in :

    SELECT rubrique,* FROM dossier_tech
    inner join rubrique on dossier_tech.dt_rubrique=rubrique.rub_id
    where dt_id=270

    It does run under Access,
    MySql does not luike it ?

    Thanks for any help.
    Pierre.

    plarts Guest

  2. Similar Questions and Discussions

    1. Difference between MySQL and MS Access
      Nice thing about MS Access is it can be installed in my web FTP and I can make fast changes to the database by double-clicking in FTP view. Does...
    2. MS Access vs MySQL
      I am using MS Access 2002. One of the field of my table in the database require to store images. I am realizing, please correct me if I am wrong,...
    3. MySQL to Access!
      I now have to change my database from my MySQL to Access. Does it mean a lot? Do I have to do a lot? Can anyone throw light on this issue? ...
    4. ms access to MYSQL
      i have developed a web site in ASP with backend msaccess. now i have to shift existing data to MYSQL Database, and use MYSQL database instead of...
    5. MySQL vs. Access
      Which should I use? And is MySQL free? Does it need special software to run? Advantages/disadvantages? And how difficult is it to move everything...
  3. #2

    Default Re: Difference between Access and MySQL

    Does MySQL support that Inner Join syntax?

    -brian

    "plarts" <pierre@pl-arts.com> wrote in message
    news:d6at4g$qt1$1@forums.macromedia.com...
    > I migrate an application from Access to MySQL,
    > and then I have this error now :
    >
    > SQL Syntax error in :
    >
    > SELECT rubrique,* FROM dossier_tech
    > inner join rubrique on dossier_tech.dt_rubrique=rubrique.rub_id
    > where dt_id=270
    >
    > It does run under Access,
    > MySql does not luike it ?
    >
    > Thanks for any help.
    > Pierre.
    >

    Brian Hogue Guest

  4. #3

    Default Re: Difference between Access and MySQL

    I would be surprised that this actually worked in Access, but you might alter
    your query per the example below. I am assuming that you wish to select the
    rubrique column from the rubrique table, and all of the columns from the
    dossier_tech table, where dt_rubrique equals rub_id:

    SELECT r.rubrique, d.*
    FROM dossier_tech d
    INNER JOIN rubrique r ON d.dt_rubrique = r.rub_id
    WHERE d.dt_id=270

    Phil

    paross1 Guest

Posting Permissions

  • You may not post new threads
  • You may post replies
  • You may not post attachments
  • You may not edit your posts

1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139