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
What stored by the master? : sql server database administration
what are questions asked in TCS for database tester (sqlserver)for 2-3 exp?
How can we check the sql server version?
Which sql server table is used to hold the stored procedure scripts?
What is transaction server distributed transaction?
Write down the syntax and an example for create, rename and delete index?
Explain the commands in sql server?
How to use transact-sql statements to access the database engine?
Explain various data region available in ssrs with their use?
What is the guest user account in sql server? What login is it mapped to it? : sql server security
How to use wildcard characters in like operations in ms sql server?
How to execute a sql statement using mssql_query()?
What is subreport?
Do you know what are acid properties?
How to create a view using data from another view?