mirror of
https://github.com/Mastermindzh/dotfiles.git
synced 2024-11-22 14:53:58 +01:00
16 lines
452 B
Transact-SQL
16 lines
452 B
Transact-SQL
/* Replace XDATABASE with the DB name */
|
|
USE XDATABASE
|
|
GO
|
|
-- SET LANGUAGE DUTCH /* ONLY USE WHEN WORKING WITH DUTCH DATES*/
|
|
GO
|
|
-- -----------------------------------------------------
|
|
-- Table `Template`
|
|
-- -----------------------------------------------------
|
|
INSERT INTO [Template]
|
|
([Column1] , [Column2] ,[Column3] ,[Geboortedatum]) VALUES
|
|
('1' , 'A' , 'a' , '03-02-1957'),
|
|
('2' , 'B' , 'a' , '22-08-1957')
|
|
GO
|
|
|
|
-- SET LANGUAGE ENGLISH
|