summaryrefslogtreecommitdiff
path: root/libsqlitepp/unittests/sqliteschema.sql
blob: 393d21ad596a2867c2aa08c5336058eb028909c7 (plain)
1
2
3
4
5
6
CREATE TABLE test(
		id int,
		fl numeric(5,2),
		string text);
INSERT INTO test VALUES(4, 123.45, 'some text');