当前位置:网站首页>Two methods of importing sqllite table from MySQL
Two methods of importing sqllite table from MySQL
2022-07-25 16:23:00 【linchao100】
Method 1
1, use db browser for sqllite export cvs file
2、 Import cvs Local files
load data local infile ‘/home/work/QT5.9Samp2019/chap11Database/departments.csv’ into table departments character set utf8 fields terminated by ‘,’ lines terminated by ‘\n’ ignore 1 lines;
Method 2
1, use db browser for sqllite export sql file
2、 modify sql file
because sql The format is different , Need modification
3、source xxx.db3.sql;
Error in intermediate import , Table can be deleted .drop table xxx;
边栏推荐
- [wechat applet] detailed explanation of applet host environment
- MySQL显式锁
- Talk about how to use redis to realize distributed locks?
- linux内核源码分析之页表缓存
- Promise期约
- 测试框架-unittest-命令行操作、断言方法
- 从业务需求出发,开启IDC高效运维之路
- 01. A simpler way to deliver a large number of props
- 百度富文本编辑器UEditor单张图片上传跨域
- Leetcode:154. find the minimum value II in the rotation sort array [about the middle and rear positioning dichotomy of the rotation sort array]
猜你喜欢
![Leetcode:154. find the minimum value II in the rotation sort array [about the middle and rear positioning dichotomy of the rotation sort array]](/img/03/54a2d82a17cd07374dc0aedacd7b11.png)
Leetcode:154. find the minimum value II in the rotation sort array [about the middle and rear positioning dichotomy of the rotation sort array]

Crazy God redis notes 12

Paper notes: highly accurate protein structure prediction with alphafold (alphafold 2 & appendix)

Product upgrade observation station in June

进程之间的通信(管道详解)

论文笔记:Highly accurate protein structure prediction with AlphaFold (AlphaFold 2 & appendix)

How to build an enterprise level OLAP data engine for massive data and high real-time requirements?

The second revolution of reporting tools

聊聊如何用 Redis 实现分布式锁?

Waterfall flow layout
随机推荐
doGet与doPost
Win11自带画图软件怎么显示标尺?
邮件的收发的展现逻辑之收件箱发件箱以及回复断链的问题
Visual studio 2022 view class diagram
C # simulation lottery
02. Limit the parameter props to a list of types
2w字详解数据湖:概念、特征、架构与案例
MySQL tutorial 67- filter duplicate data using distinct
面试突击:为什么 TCP 需要 3 次握手?
mysql 表写锁
What is the shortcut key for win11 Desktop Switching? Win11 fast desktop switching method
Cookie、cookie与session区别
Exclusive lock
开发者如何为React Native选择合适的数据库
I interviewed 8 companies and got 5 offers in a week. Share my experience
MySQL read / write lock
Quickly deploy mqtt clusters on AWS using terraform
Upgrade esxi6.7.0 to 7.0u3f (updated on July 12, 2022)
linux内核源码分析之页表缓存
测试框架-unittest-测试套件、结果输出到文件