· 8 years ago · May 28, 2018, 05:56 AM
1/*
2Navicat MySQL Data Transfer
3
4Source Server : SQL09.FREEMYSQL.NET_3306
5Source Server Version : 50092
6Source Host : SQL09.FREEMYSQL.NET:3306
7Source Database : bkmxd
8
9Target Server Type : MYSQL
10Target Server Version : 50092
11File Encoding : 65001
12
13Date: 2012-01-18 18:48:28
14*/
15
16SET FOREIGN_KEY_CHECKS=0;
17
18-- ----------------------------
19-- Table structure for `aanmeldingen`
20-- ----------------------------
21DROP TABLE IF EXISTS `aanmeldingen`;
22CREATE TABLE `aanmeldingen` (
23 `firstname` text NOT NULL,
24 `lastname` text NOT NULL,
25 `girlname` text NOT NULL,
26 `city` text NOT NULL,
27 `addr` text NOT NULL,
28 `phone` text NOT NULL,
29 `email` text NOT NULL,
30 `sex` text NOT NULL,
31 `type` text NOT NULL,
32 `firstyear` text NOT NULL,
33 `year` text NOT NULL,
34 `paid` text NOT NULL,
35 `pass` text NOT NULL,
36 PRIMARY KEY (`email`(20))
37) ENGINE=MyISAM DEFAULT CHARSET=latin1;
38
39-- ----------------------------
40-- Records of aanmeldingen
41-- ----------------------------
42INSERT INTO `aanmeldingen` VALUES ('Swen', 'Kooij', 'NVT', 'Ede', 'Corversbos 28', '0318655336', 'swenk95@gmail.com', 'Man', 'Oud Leerling', '2007', '2012', 'Nee', 'a0055f683f3fad7229388eebc9b624ae');