Mentalorwot
MIS
I am trying to create a table from a query and need to set the default size in column one to Text 20. How can i do this in the query
Follow along with the video below to see how to install our site as a web app on your home screen.
Note: This feature may not be available in some browsers.
CREATE TABLE myTable
(myTextField Text (20), etc.
ALTER TABLE myTable ALTER COLUMN myTextField Char(20)