Path: blob/master/elisp/emacs-for-python/yasnippet/snippets/sql-mode/create
990 views
#contributor : Alejandro Espinoza Esparza <[email protected]> #name : create table ... # -- CREATE TABLE [${1:dbo}].[${2:TableName}] ( ${3:Id} ${4:INT IDENTITY(1,1)} ${5:NOT NULL} $0 CONSTRAINT [${6:PK_}] PRIMARY KEY ${7:CLUSTERED} ([$3]) ) GO