sql 视图

use my_temp

CREATE VIEW V_temp --创建视图
AS
SELECT
   * 
FROM
    A

select *from V_temp

猜你喜欢

转载自www.cnblogs.com/enych/p/11592443.html