由买买提看人间百态

boards

本页内容为未名空间相应帖子的节选和存档,一周内的贴子最多显示50字,超过一周显示500字 访问原贴
Database版 - [转载] SQL求救
相关主题
mySQL DELETE怎么都是error,哪里不对而来?[转载] strong SQL skills?
怎样找odd和even rowArithmetic overflow error converting expression to data type float
问一个 SQL combine records问题shutdown 200+ SQL SERVERS in 45 minutes
Urgent SQL problem!一个single table 的 SQL QUERY
[转载] what's wrong with this PL/SQLcompare two large tables SQL (转载)
drop a tableerror run SQL query from pyodbc python 3.2.5 (转载)
in DBMS, is NULL=NULL valid?Error of SQL query on IBM netezza SQL database from Aginity (转载)
SQL 问题 [zz]怎样把SQL一table 中系统自动生成的primary key 改成source table 中 的primary可以?
相关话题的讨论汇总
话题: single话题: expression话题: sql话题: matchorf
进入Database版参与讨论
1 (共1页)
z***h
发帖数: 998
1
【 以下文字转载自 OnTheRoad 讨论区 】
【 原文由 zzzzh 所发表 】
update single_single set ExpressionLevel = expression.ExpressionLevel w
here expression.ORF=single_single.matchORF;
想把expression table里的ExpressionLevel这一项按照ORF的关系
填到single_single.ExpressionLevel里去,未果....
错误信息是:
ERROR 1109: Unknown table 'expression' in where clause
s*****c
发帖数: 24
2
Do not understand your statement. You should give more details.
BTW, where is your "from" clause in the statement.

【在 z***h 的大作中提到】
: 【 以下文字转载自 OnTheRoad 讨论区 】
: 【 原文由 zzzzh 所发表 】
: update single_single set ExpressionLevel = expression.ExpressionLevel w
: here expression.ORF=single_single.matchORF;
: 想把expression table里的ExpressionLevel这一项按照ORF的关系
: 填到single_single.ExpressionLevel里去,未果....
: 错误信息是:
: ERROR 1109: Unknown table 'expression' in where clause

f****n
发帖数: 47
3
好像set一列的value不能这么用吧。
Try this:
UPDATE single_single
SET ExpressionLevel = (SELECT expression.ExpressionLevel
FROM expression
WHERE expression.ORF=single_single.matchORF);
Not sure. Hope this will work.

【在 z***h 的大作中提到】
: 【 以下文字转载自 OnTheRoad 讨论区 】
: 【 原文由 zzzzh 所发表 】
: update single_single set ExpressionLevel = expression.ExpressionLevel w
: here expression.ORF=single_single.matchORF;
: 想把expression table里的ExpressionLevel这一项按照ORF的关系
: 填到single_single.ExpressionLevel里去,未果....
: 错误信息是:
: ERROR 1109: Unknown table 'expression' in where clause

1 (共1页)
进入Database版参与讨论
相关主题
怎样把SQL一table 中系统自动生成的primary key 改成source table 中 的primary可以?[转载] what's wrong with this PL/SQL
zz: Oracle推出免费数据库产品drop a table
请教:关于安装微软的 SQL SERVER 2005in DBMS, is NULL=NULL valid?
SQL server Express 怎么加 link tableSQL 问题 [zz]
mySQL DELETE怎么都是error,哪里不对而来?[转载] strong SQL skills?
怎样找odd和even rowArithmetic overflow error converting expression to data type float
问一个 SQL combine records问题shutdown 200+ SQL SERVERS in 45 minutes
Urgent SQL problem!一个single table 的 SQL QUERY
相关话题的讨论汇总
话题: single话题: expression话题: sql话题: matchorf