Quantcast
Channel: Trigger
Browsing index pages (3 articles)
↧

Trigger

CREATE TABLE [dbo].[patient]( [pid] [nvarchar](50) NOT NULL, [name] [varchar](50) NOT NULL, [email] [varchar](50) NOT NULL, [password] [varchar](50) NOT NULL, [createdon] [datetime] NOT NULL,...

View Article


Re: Trigger

Have a look at this URL,http://stackoverflow.com/questions/2247679/sql-server-trigger-insert-values-from-new-row-into-another-table

View Article


Re: Trigger

Hi,If you insert data into table1 and table2, it will need 2 insert clause to insert each data into tables. As you set the new table each column is NOT NULL, you need to set a value when you insert the...

View Article
Browsing index pages (3 articles)