Coggle requires JavaScript to display documents.
CREATE INDEX idx_username_hash ON Users USING hash (Username);
CREATE FULLTEXT INDEX idx_content ON Articles (Title, Content); SELECT * FROM Articles WHERE MATCH(Title, Content) AGAINST('database indexing');
WHERE
CREATE NONCLUSTERED INDEX IX_PhoneBook_NCI ON dbo.PhoneBook(LastName, FirstName) INCLUDE(PhoneNumber)