一、Oracle数据库在存储过程中,如何在字符串中使用变量?
例:select to_char(sysdate,'yyyymmdd') into v_yyyymmdd from dual;
execute immediate('create table tableName_bk_' || v_yyyymmdd || ' as select * from TableName');
将B表中符合关联条件的A表字段值更新至A表
update TableA a set a1,a2,a3=(select b1,b2,b3 from TableB b where a.column_name1 = b.column_name1 and a.column_name2 = b.column_name2 and ...)
二、如何将table中的field1字段的值更新成‘tset111’?
答:update table set field1='test111' where field2=100;
三、解释一下group by 的作用?
答:此关键字的作用是将查询的符合条件的记录按某字段列表分组,在此过程中预查出的字段若为字符型,分组后只取最上面的一个,预查出的字段若为数值型将求和。
四、union和union all有什么区别?
答:union 对两个结果集进行并集操作,不包括重复行,同时进行默认规则的排序。
union all对两个结果集进行并集操作,包括重复行,不进行排序。