1、mysql中查询中如果使用双引号,在人大金仓数据库中不支持,需改为单引号
例如:
select 字段A,字段B,字段C from tableA where 字段A = "1"
改为:
select 字段A,字段B,字段C from tableA where 字段A = '1'
2、MySQL中使用group by 字段A,然后也会返回其他字段 字段A,字段B,字段C,其他字段也要使用函数括起来,
例如:
select 字段A,字段B,字段C from tableA group by 字段A
改为:
select 字段A,max(字段B),max(字段C) from tableA group by 字段A
否则会报错
3、mysql中使用inner join的,要去掉改为使用逗号关联
例如:
select a.* from tableA a inner join tableB b on a.字段1 = b.字段1
改为:
select a.* from tableA a, tableB b where a.字段1 = b.字段1