File: test-sqlite.sql

package info (click to toggle)
openrefine 3.8.7-2
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 40,864 kB
  • sloc: javascript: 105,631; java: 85,657; xml: 5,917; sh: 615; makefile: 79; python: 71; sql: 60
file content (15 lines) | stat: -rw-r--r-- 537 bytes parent folder | download | duplicates (4)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
CREATE TABLE IF NOT EXISTS test_table (
  id integer NOT NULL,
  ue_id char(8) NOT NULL,
  start_time timestamp NOT NULL,
  end_date date DEFAULT NULL,
  bytes_upload integer NOT NULL,
  bytes_download integer NOT NULL,
  mcc char(3) DEFAULT NULL,
  mnc char(3) NOT NULL,
  lac varchar(11) DEFAULT NULL,
  imei char(16) NOT NULL
);

INSERT INTO test_table(id, ue_id, start_time, end_date, bytes_upload, bytes_download, mcc, mnc, lac, imei)
     VALUES (1, '11100022', now(), now(), 1024, 2048, 321, 543, 12209823498,  1344498988877487);