成都笔试——PL/SQL准备

本文涉及了PL/SQL的相关知识,包括英文邮件写作、存储代码块类型、LOOP语句应用、SQL查询及性能优化问题。邮件中讨论了会议安排;测试题涵盖了PL/SQL中的PROCEDURE、LOOP、CURSOR、BULK COLLECT等概念,并涉及动态SQL执行和日期转换性能提升策略。
摘要由CSDN通过智能技术生成

1. 英文邮件写作

先需要发一封邮件给客户,就一些需求的讨论确定一个会议时间,我们这边在周三下午和周五早上有空,讯问客户的空闲时间。

Dear all,

Good day!

Thank you for your last email!

We have got your general demand. And for deep understanding, we suggest to have a meeting together to discuss more details about it.

Wednesday afternoon and Friday morning this week are the available time for us. Would you please offer the feedback whether they are also convenient for you? If both not, please help offer your available time list. And we will try to book another time for this meeting and reply to you.

If any further questions, please feel free to contact us.

We are looking forward to your kind reply.

Thank you & Best regards!

Jay Cui

2. 测试题A

1) Other than Function, what other types of PL/SQL code blocks can be stored in the database?

Answers:

PROCEDURE 过程, PACKAGE 包

2) Define a LOOP statement that increments a variable “var_count” by 1 from 1 to 10.

Answers:

DECLARE
  var_i INT:=1;
  var_count INT:=0;
BEGIN
  LOOP
      var_count:=var_count+var_i;
      EXIT WHEN var_i=10;
      var_i:=var_i+1;---步
评论 1
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值