Adding the primary key for two columns Get link Facebook X Pinterest Email Other Apps May 29, 2019 CREATE TABLE Persons ( ID int NOT NULL, LastName varchar(255) NOT NULL, FirstName varchar(255), Age int, CONSTRAINT PK_Person PRIMARY KEY (ID,LastName) Get link Facebook X Pinterest Email Other Apps Comments
Index on view May 31, 2019 Let's say if we create index on a view and if we alter the view then the index gets dropped and again we have to create a index on the view Read more
Comments
Post a Comment