参考模板
---
title: VIEWS
---
<!-- 自动分组 -->
---
autoGroup-1: JAVA API
title: IO
---
::: tip
这是一个提示
:::
::: warning
这是一个警告
:::
::: danger
这是一个危险警告
:::
::: details
这是一个详情块,在 IE / Edge 中不生效
:::
<!--图片 -->
![alert](img/url)
<!-- 超链接 -->
[myBlog](https://osvue.github.io)
\```sql
CREATE VIEW product_customers AS
SELECT
cust_name,
cust_contact,
prod_id
FROM customers c
JOIN orders o
USING(cust_id)
JOIN orderitems oi
USING(order_num)
\```