Created
July 30, 2014 01:20
-
-
Save marti1125/d46d4f386d30dfc685c8 to your computer and use it in GitHub Desktop.
db 3
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
CREATE INDEX index_01 | |
ON Customers(LastName) | |
CREATE INDEX index_02 | |
ON Employees(LastName) | |
CREATE INDEX index_03 | |
ON Sales(ProductID,Quantity) | |
CREATE INDEX index_04 | |
ON Products(Name,Price) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment