views, triggers

Source: Internet
Author: User

Views: can only be queried for use, cannot add data and modify data
Consider a query result as a virtual table
Select *from (Xunibiao) as xunibiaoming where condition
Modify a View
Alter VIEW SHITU1
As
Select *from Studento
Delete a view
Drop View SHITU1
Trigger
---triggers---special stored procedures. automatically triggered by adding or removing changes to the database table
Create Trigger Tr_student_insert
On student--which table to build the trigger on
For Insert--for is added after the trigger, for can also be written after--after what what to trigger
As
Begin
Select *from Student
End
Go
INSERT into student values ()--parentheses are all columns in the file

Create Trigger Tr_student_delete
On student
Instead of delete
As
Begin
DECLARE @sno int
Select @sno =sno from deleted
Delete from
End
Go
Delete from student
Select *from Student
Create Trigger Tr_student_delete
On student
Instead of delete
As
Begin
Select *from deleted--deleted is a temporary table to get the data
End
Go

views, triggers

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.