encryption.sql

来自「本程序中即有讲义」· SQL 代码 · 共 21 行

SQL
21
字号
use pubs
go
CREATE view VIEW_author_title1
with encryption
AS
SELECT authors.au_lname, authors.au_fname, titles.title
FROM authors INNER JOIN
      titleauthor ON authors.au_id = titleauthor.au_id INNER JOIN
      titles ON titleauthor.title_id = titles.title_id
go
exec sp_helptext VIEW_author_title1
go
CREATE view VIEW_author_title2
--with encryption
AS
SELECT authors.au_lname, authors.au_fname, titles.title
FROM authors INNER JOIN
      titleauthor ON authors.au_id = titleauthor.au_id INNER JOIN
      titles ON titleauthor.title_id = titles.title_id
go
exec sp_helptext VIEW_author_title2

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?