SYNTAX FOR VIEWS WITH EXAMPLE
HOW TO LINK TWO TABLES
Answer Posted / durgaprasad
Create View emp_dept_vw with encryption as
select emp.empid,emp.ename,dept.deptid,dept.dname
from emp,dept where emp.deptid=dept.deptid
with check option
| Is This Answer Correct ? | 6 Yes | 0 No |
Post New Answer View All Answers
Is the primary key column of a table an index in ms sql server?
You want to be sure that queries in a database always execute at the maximum possible speed. To achieve this goal you have created various indexes on tables which other statement will keep the database in good condition?
What are the various editions of sql server 2017 that are available in the market?
can an automatic recovery be initiated by a user? : Sql server administration
What are triggers? How do you invoke a trigger on demand?
How can you check the version of sql server?
How can you set the threshold at which sql server will generate keysets asynchronously?
what is database replicaion? : Sql server database administration
Define Wed Edition in SQL Azure?
What will be the maximum number of indexes per table?
What is the purpose of floor function?
What are the different types of Indexes available in SQL Server?
What is the main purpose of having conversation group?
Can you always create a cache of a report?
How to include date and time values in sql statements?