摘要:
在使用PowerDesigner对数据库进行概念模型和物理模型设计时,一般在NAME或Comment中写中文,在Code中写英文。Name用来显 示,Code在代码中使用,但Comment中的文字会保存到数据库Table或Column的Comment中,当Name已经存在的时候,再写一次 Comme 阅读全文
摘要:
表1 table1字段 id value1 value12 value2表2 table2字段 id value1 value32 value4将表2中的value字段更新到表1中SQL语句:update aset a.value=b.valuefrom table1 a,table2 b wher... 阅读全文