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
How many triggers you can have on a table?
Can coalesce return null?
what are different types of raid configurations? : Sql server database administration
what is the difference between Delete and Truncate command in SQL
what are the different ways to return the rowcount of a table?
What is a unique key constraint?
Can sql servers linked to other servers like oracle?
Differentiate between truncate vs delete in mssql?
What are “phantom rows”?
What are the types of dml?
Can we insert data into view sql server?
How to populate a table in sql server?
How to start sql server browser service?
What specific conditions database should meet, before you can bulk copy data into it using bcp?
What is sql stored procedure?