File: 23_unicode.sql

package info (click to toggle)
liborlite-perl 1.97-1
  • links: PTS, VCS
  • area: main
  • in suites: wheezy
  • size: 524 kB
  • sloc: perl: 3,693; sql: 97; makefile: 2
file content (9 lines) | stat: -rw-r--r-- 242 bytes parent folder | download | duplicates (5)
1
2
3
4
5
6
7
8
9
create table foo (
    foo_id integer not null primary key,
    one integer not null,
    two real not null,
    name text not null unique,
    text text not null
);

insert into foo (one, two, name, text) values ( 1, 1.23, 'smiley', '☺');