当前位置:网站首页>sqllite create a database
sqllite create a database
2022-06-09 17:18:00 【Great mage yunzhongjun】
For example, to create a new SQLite database named "ex1" with a single table named "tbl1", you might do this:
$ sqlite3 ex1
SQLite version 3.36.0 2021-06-18 18:36:39
Enter ".help" for usage hints.
sqlite> create table tbl1(one text, two int);
sqlite> insert into tbl1 values('hello!',10);
sqlite> insert into tbl1 values('goodbye', 20);
sqlite> select * from tbl1;
hello!|10
goodbye|20
sqlite>
Terminate the sqlite3 program by typing your system End-Of-File character (usually a Control-D).
Use the interrupt character (usually a Control-C) to stop a long-running SQL statement.
边栏推荐
- VersionFilter 版本控制
- 如何训练你的准确率?
- Word tutorial, how to change line spacing in word?
- sqllite create a database
- 关联数组&正则表达式
- 解决Chrome提示:“您的连接不是私密连接“,且无继续访问选项问题
- How to find and delete duplicate documents in endnote
- Question d: Ma Zori
- Sphereex officially open source the database mesh oriented solution pisanix
- 妹妹们坐船头,哥哥们岸上走
猜你喜欢

经常弹出:VSCode尝试在目标目录创建文件时发生一个错误 重试 跳过这个文件 关闭安装程序

JLINK RTT can be opened but cannot display problems and bin file output considerations on the desktop

永远并不远,五种可能注定要衰落的编程语言

CREMB Pro 后台子管理员 403 问题分析

如何查找和删除Endnote中重复的文献

Elk is not fragrant! I use grayog, which is much lighter

vscode 配置 文件保存时自动格式化

【华东师范大学】初试复试考研资料分享

JLINK RTT 能打开却不能在桌面显示问题和BIN文件输出注意事项

Unity-代码绑定按钮功能
随机推荐
【華東師範大學】初試複試考研資料分享
Unity-获取XML文件的内容信息
经常弹出:VSCode尝试在目标目录创建文件时发生一个错误 重试 跳过这个文件 关闭安装程序
【华东师范大学】初试复试考研资料分享
秒云云原生信创全兼容解决方案,推动信创产业加速落地
Apple wins us judge dismisses iPhone and iPad security defect class action
永远并不远,五种可能注定要衰落的编程语言
蓝桥杯2022年第十三届省赛真题-积木画
在华为写了十几年代码,一个程序员的自我修养
sqllite create a database
About not adding mysql data. DLL
World War II fell into these four misunderstandings, and another year will be useless!
Having written code in Huawei for more than ten years, a programmer's self-cultivation
CPU程序中断
华三IRF配置例子
常用数的集合
谷歌浏览器书签保存在哪里以及书签导入导出方法
Active prevention DWS key tool installation confirmation
Leetcode 1967. The number of strings that appear in a word as substrings
为什么 SQL 语句使用了索引,但却还是慢查询?