提交 38f5dfda 编写于 作者: CSDN-Ada助手's avatar CSDN-Ada助手

优化练习题

上级 343d8f61
......@@ -17,7 +17,10 @@ end LOOP trace;
现在 Joe 想要用 `REPEATE` 简化这个 `LOOP` 循环,他应该怎么做?
<br>
(提示)REPEAT循环语句的语法结构为:
```sql
REPEAT
Statements;
......
......@@ -17,8 +17,10 @@ end LOOP trace;
现在 Joe 想要用 `WHILE` 简化这个 `LOOP` 循环,他应该怎么做?
<br>
(提示)WHILE语法结构为:
```sql
[label:] WHILE search_condition DO
statement list
......
......@@ -12,8 +12,10 @@ create table points(
增加一个生成列,保存每个点的模(modulus),即 `√(x^2 + y^2)` 。下面哪个操作是正确的?
<br>
(提示)MySQL生成列的语法结构为:
```sql
column_name data_type [GENERATED ALWAYS] AS (expression)
```
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册