File: unsigned_integer_expected_target_data.sql

package info (click to toggle)
mysql-workbench 6.3.8%2Bdfsg-1
  • links: PTS, VCS
  • area: main
  • in suites: stretch
  • size: 113,932 kB
  • ctags: 87,814
  • sloc: ansic: 955,521; cpp: 427,465; python: 59,728; yacc: 59,129; xml: 54,204; sql: 7,091; objc: 965; makefile: 638; sh: 613; java: 237; perl: 30; ruby: 6; php: 1
file content (13 lines) | stat: -rw-r--r-- 718 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
12
13
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `UnsignedIntegerContainer` (
  `id` int(11) NOT NULL DEFAULT '0',
  `tint` tinyint(3) unsigned DEFAULT NULL,
  `sint` smallint(5) unsigned DEFAULT NULL,
  `mint` mediumint(8) unsigned DEFAULT NULL,
  `iint` int(10) unsigned DEFAULT NULL,
  `bint` bigint(20) unsigned DEFAULT NULL,
  PRIMARY KEY (`id`)
) ENGINE=InnoDB DEFAULT CHARSET=latin1;
/*!40101 SET character_set_client = @saved_cs_client */;
INSERT INTO `UnsignedIntegerContainer` VALUES (1,NULL,NULL,NULL,NULL,NULL),(2,0,0,0,0,0),(3,127,32767,8388607,2147483647,9223372036854775807),(4,255,65535,16777215,4294967295,18446744073709551615);