sql icon indicating copy to clipboard operation
sql copied to clipboard

create-table translate (varchar 20) to \"VARCHAR\"(20)

Open NoahStoryM opened this issue 5 years ago • 0 comments

What version of Racket are you using?

v7.8

What program did you run?

(create-table #:temporary the_numbers #:columns [n integer #:not-null] [d (varchar 20)])

What should have happened?

(sql-statement "CREATE TEMPORARY TABLE the_numbers (n integer NOT NULL, d varchar(20))")

If you got an error message, please include it here.

(sql-statement "CREATE TEMPORARY TABLE the_numbers (n integer NOT NULL, d \"VARCHAR\"(20))")

NoahStoryM avatar Oct 19 '20 08:10 NoahStoryM