Guest User

Untitled

a guest
Jun 23rd, 2018
94
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.25 KB | None | 0 0
  1. sqlite> .schema mytable
  2. CREATE TABLE mytable (
  3. id integer primary key, /* 0 */
  4. mycol integer not null, /* 1 */
  5. );
  6.  
  7. sqlite> SELECT mycol FROM mytable;
  8. here is some text
  9. here is more text
  10. [...]
  11. it's text all the way down
Add Comment
Please, Sign In to add comment