1

我有两个名为 t1 和 t2 的表,其内容列表如下:

mysql> use test;
Database changed
mysql> select * from t1;
+----+------+
| id | val  |
+----+------+
|  1 |  100 |
|  2 |  200 |
+----+------+
2 rows in set (0.00 sec)

mysql> select * from t2;
+----+-------+
| id | val   |
+----+-------+
| -1 | -1000 |
|  1 |  1000 |
|  3 |  3000 |
+----+-------+
3 rows in set (0.00 sec)

在 mysql 命令中运行了一条 sql 语句,但存在问题:

mysql> create or replace view iid as select id from t1 union select id from t2;select iid.id,t1.val,t2.val from iid left join t1 on iid.id=t1.id left join t2 on iid.id=t2.id;
Query OK, 0 rows affected (0.07 sec)

+----+------+-------+
| id | val  | val   |
+----+------+-------+
|  1 |  100 |  1000 |
|  2 |  200 |  NULL |
| -1 | NULL | -1000 |
|  3 | NULL |  3000 |
+----+------+-------+
4 rows in set (0.00 sec)

当它在matlab中运行时出现错误:

>> sqlCmd = ['create or replace view iid as select id from t1 union select id from t2;',...
          'select iid.id,t1.val,t2.val from iid',...
          ' left join t1 on iid.id=t1.id',...
          ' left join t2 on iid.id=t2.id'];

conn = database('test','root','198471',...
        'com.mysql.jdbc.Driver','jdbc:mysql://127.0.0.1:3306/test');
>> curs = exec(conn,sqlCmd);
>> curs.Message
ans =
You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near 'select iid.id,t1.val,t2.val from iid left join t1 on iid.id=t1.id left join t2 o' at line 1
>> curs = exec(conn,'select * from t1');
>> curs = fetch(curs);
>> curs.Data
ans =
     1   100
     2   200
>> sqlCmd

我是 SQL 的纯新手,我不知道这个错误消息。

任何帮助,将不胜感激。

4

1 回答 1

2

看起来,Matlab 将sqlCmd矩阵中的每个字符串视为单独的 SQL 语句。当您将查询分解为字符串部分时,这将不起作用,因为并非每个部分都是有效的独立 SQL 语句。正如上面的评论所暗示的,您可能需要搜索允许这样做的设置。或者,您可以尝试将 SQL 重写为单个字符串,就像使用 mysql 一样:

 sqlCmd = 'create or replace view iid as select id from t1 union select id from t2;select iid.id,t1.val,t2.val from iid left join t1 on iid.id=t1.id left join t2 on iid.id=t2.id;';
 curs = exec(conn,sqlCmd);

这至少应该无错误地运行您的查询。如果您还没有这样做,请查看exec http://www.mathworks.co.uk/help/toolbox/database/ug/exec.html的 mathworks 文档

于 2012-08-25T09:58:15.577 回答