- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我想将一行从数据库中的表复制到另一个数据库中的相同表。为了测试,我创建了这个:
CREATE TABLE stuff (absid integer primary key, otherfield string );
'stuff'
与上面的两个数据库
testdb1
和
testdb2
中的表相同。然后我在
'stuff'
的
testdb1
中放入两行。然后,可以从命令行将一行从一个数据库复制到另一个数据库,因此:
prompt> sqlite3 testdb1
sqlite> attach database testdb2 as testdb2;
sqlite> insert into testdb2.stuff select * from stuff where absid=2;
sqlite> ^d
prompt>
testdb1
,则会得到:
SQL error: PRIMARY KEY must be unique
select * ...
指定它吗?
最佳答案
您可以指定列,省去主键列,插入的新行将激活自动键生成。例如,假设主键位于列col1
中,而列col2
至col4
是非键列,请尝试以下操作:
sqlite> insert into testdb2.stuff (col2, col2, col4)
select col2, col3, col4 from stuff where absid=2;
*
”通配符。 SQL中没有办法使用通配符来表示“除我指定的列以外的所有列”。
关于sqlite - 使用insert into database.table1从表2中选择*,其中id = some_value;,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/669971/
我刚刚将 MYISAM 转换为 InnoDB。在此之前,我保存了该表(请参阅下面的代码,该代码是由 phpMyAdmin 自动创建的),删除它,将引擎更改为 InnoDB 并再次创建它。 CREATE
我在 C++ 头文件中看到过类似的内容: #define VALUE_A @VALUE_A@ 或 #if @VALUE_A@ ... #endif 那么,谁能告诉我 @@ 是什么意思? 非常感谢。 最
我想比较数组值是否大于某个值。 我试过以下: this.AllElements = element.all(by.css('[style="display: none"]')); expect(thi
我想写一个函数,labels ,其工作原理如下: x `names x Labels(x) NULL > Labels(x) x A B C D E F 1 2 3 4 5 6 矩阵方法,可能是
我使用 django-oscar + Solr + haystack。 *===============================================================
我想将一行从数据库中的表复制到另一个数据库中的相同表。为了测试,我创建了这个: CREATE TABLE stuff (absid integer primary key, otherfield s
我只是想学习 Python 中的 K-ary 树实现并遇到了这个链接: http://www.quesucede.com/page/show/id/python-3-tree-implementati
我知道一些检查参数是否为零的方法 if param[:some_value] if param[:some_value].present? if !param[:some_value].nil?
在我从 Spring boot 1.5 迁移到 2.x 之后,我遇到了以下问题: APPLICATION FAILED TO START Description: Failed to bind pro
我已经多次想知道自己是否,如果没有,为什么不,以下伪代码有一个习语/快捷方式: if object.value == some_value then object.value = some_other
我的模型 Backlog 和实体之间存在一对一的前向关系。每个待办事项都有一个实体。如果待办事项缺少实体(数据库中不存在),我的代码会尝试创建一个实体,并将其链接到缺少实体的待办事项。
所以我有这个 Spring Boot 应用程序,它必须向具有 someValue 和 someOtherValue 属性的对象发送带有参数“some_value=1500&some_other_val
我想知道我是否可以在 Linux 下的 Mono 中获取/设置应用程序属性,就像在 visual studio 2010 下一样? 例如,要在应用程序设置中为 var 设置一个值,我可以这样做吗? P
MDN 网络文档将 fit-content 描述为一个函数: https://developer.mozilla.org/en-US/docs/Web/CSS/fit-content https://
我是一名优秀的程序员,十分优秀!