projects
/
swc-workshop.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
7cc79e3
)
Fixing data type error in SQL creation
author
Greg Wilson
<gvwilson@third-bit.com>
Wed, 29 Jan 2014 20:46:25 +0000
(15:46 -0500)
committer
W. Trevor King
<wking@tremily.us>
Tue, 11 Mar 2014 04:54:19 +0000
(21:54 -0700)
sql/novice/gen-survey-database.sql
patch
|
blob
|
history
diff --git
a/sql/novice/gen-survey-database.sql
b/sql/novice/gen-survey-database.sql
index 2be8a952b58d3f5662ac82478a1b96f76e65862e..bfba7fbc70f1612042ac5d13dad7a6f9bb2969da 100644
(file)
--- a/
sql/novice/gen-survey-database.sql
+++ b/
sql/novice/gen-survey-database.sql
@@
-53,7
+53,7
@@
insert into Visited values(844, 'DR-1', '1932-03-22');
create table Survey(
taken integer,
person text,
- quant
real
,
+ quant
text
,
reading real
);