File: example_mariadb.sql

package info (click to toggle)
hoel 1.4.29-2
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 564 kB
  • sloc: ansic: 4,871; makefile: 239; sql: 38; sh: 28
file content (10 lines) | stat: -rw-r--r-- 204 bytes parent folder | download | duplicates (4)
1
2
3
4
5
6
7
8
9
10
-- License: MIT
DROP TABLE IF EXISTS other_test;

CREATE TABLE other_test (
    id INTEGER PRIMARY KEY AUTO_INCREMENT,
    name VARCHAR(128),
    age INTEGER,
    birthdate DATE,
    temperature FLOAT
);