mirror of
https://github.com/Mastermindzh/dotfiles.git
synced 2024-11-22 23:04:10 +01:00
16 lines
452 B
MySQL
16 lines
452 B
MySQL
|
/* 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
|