- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我正在处理两个表:
criter_live
通过AJAX自动更新worksheets
由用户手动更新所以,我的问题是,我想知道自动更新表 (criter_live
) 和手动更新表 (worksheets
) 之间的区别。两个表中的 entry_number 和 left_number 相同,但是 machine_id
、entry_date
和 left_date
可能不同,所以我想查询知道什么时候worksheets
与 criter_live
不同。虽然,一行不能在 criter_live
中,但可以在 worksheets
中,反之亦然。在这种情况下,我们将创建一条新记录,或者我们将从数据库中删除一条记录。
例如,我正在检查 criter_live
和 worksheets
是否有 entry_number
ABC,但是 worksheets
没有包含最新的 left_date
值(criter_live
包含最新的值)=> 打印 smth 给我当前的用户。
我正在使用这个查询(对于 machine_id,对于 left_date,对于 entry_date):
SELECT train_id FROM criter_live WHERE entry_date > $currentdate_today_midnight AND mac_id NOT IN (SELECT train_id FROM worksheets)
但它并没有像我想要的那样工作...在某些情况下它不会像我想要的那样返回结果,我认为这是一个问题但是在哪里......事实上,我可以有几个 machine_id
同一天,但没有相同的 entry_number
或 left_number
...我应该提到在两个表中的字段 entry_number
& left_number
包含相同的值(除了缺失的行,显然不在其中一个基中......)。
具体情况下,如果不明白: - 检查 criter_live
和 worksheets
:某个特定的 left_date
entry_number
在 worksheets
中与 ref db criter_live
不同(应用 工作表上的更改)
检查 criter_live
和 worksheets
:某个特定的 entry_date
entry_number
在 worksheets
中与 ref db criter_live
不同(应用工作表上的更改)
检查 criter_live
和 worksheets
:一个新的 entry_number
出现在criter_live
未出现在 worksheets
中:在 worksheets
中创建新行。
正在检查 criter_live
和 worksheets
:entry_number
否longer出现在criter_live
中,但存在于worksheets
中(删除worksheets
中的记录)
谢谢
数据库方案:
+--------------------------------------------------------------------------------------+
| criter_live & worksheets |
+--------------------------------------------------------------------------------------+
| id | machine_id | entry_number | machine_type | entry_date | left_date | left_number |
+----+------------+--------------+--------------+------------+-----------+-------------+
| 1 | 76801 | R88901 | -Z | timestamp | timestamp | S79980 |
+----+------------+--------------+--------------+------------+-----------+-------------+
| 2 | 82501 | R89874 | -X | timestamp | timestamp | S98780 |
+-------------------------------------------- --------------------------------------+
最佳答案
有很多问题没有解决的情况,例如,如果有两条记录,一条在 criter_live
中,另一条在 worksheets
中,会发生什么情况,对于哪个 entry_number
匹配但 left_number
不匹配?无论如何,我觉得解决这个问题的方法不是在过于复杂的 SQL 查询中,而是在一个简单的 PHP 脚本中(我假设使用 PHP 是可以的,因为您在问题中包含了 php
标记)。
因此,以下是 PHP 运行方式的伪代码。不打算成为易于运行的 PHP,只是一个骨架:
function records_match (record_from_criter_live, record_from_worksheets)
{
// The code below this function assumes the following two lines
if (record_from_criter_live['entry_number'] != record_from_worksheets['entry_number'])
return false;
// That said, you can implement here any further criteria
// you wish to add to decide if two records
// (one record from table criter_live and the other from worksheets)
// are "the same" or not
// Return true if they match
// Return false if they don't
}
// The following two lines are intended to be
// PHP code for establishing the connection to the database
// and setting up everything.
// Note that it is assumed that ORDER BY entry_number
// will always give all matching record pairs
// in the correct order.
// That's why the function above must always return false
// for any two records with different entry_number
query1 = SELECT * FROM criter_live ORDER BY entry_number
query2 = SELECT * FROM worksheets ORDER BY entry_number
// Again, these two lines represent
// PHP code for getting a record from each query
// It is assumed that record1 and record2 get a special value
// when trying to get a record past the last one
// The condition in the while loop checks for this
record1 = first record from query1
record2 = first record from query2
while ((record1 not past end-of-table) OR (record2 not past end-of-table))
{
// variable next means:
// $next = 1 -> record1 is orphan, no matching record2 exists
// $next = 2 -> record2 is orphan, no matching record1 exists
// $next = 3 -> record1 and record2 match
if (record1 is past end-of-table)
$next = 2
else if (record2 is past end-of-table)
$next = 1
else if (records_match (record1, record2)) // Notice this is a call to function above
$next = 3
else if (record1[entry_number] < record2[entry_number])
$next = 1;
else
$next = 2;
// Now process the result
if ($next == 1)
{
// Add record1 to list of criter_live
// with no matching worksheets
do_whatever_with (record1)
// Then move forward
record1 = next record from query1
}
else if ($next == 2)
{
// Add record2 to list of worksheets
// with no matching criter_live
do_whatever_with (record2)
// Then move forward
record2 = next record from query2
}
else
{
// Add (record1, record2) to list of matching (criter_live, worksheets)
// I suppose this means just ignore both record1 and record2
// i.e. I suppose the following line is innecesary
do_whatever_with (record1, record2)
// Then move forward
record1 = next record from query1
record2 = next record from query2
}
}
close query1 and query2 as necessary
关于php比较两个sql表并寻找差异,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/35430488/
我从NVIDIA手册Eg中复制了以下代码:__threadfence()。他们为什么有 在以下代码中使用了__threadfence()。我认为使用__syncthreads()而不是__thread
我在使用 SVN 更改列表和 svn diff 时遇到了一些麻烦.特别是我想获取特定修订范围的特定文件列表的更改历史记录。 SVN 变更列表似乎是完美的解决方案,所以我的方法是: svn change
我有两个 IP 地址列表。我需要将它们合并到三个文件中,交集,仅来自 list1 的文件和仅来自 list2 的文件。 我可以用 awk/diff 或任何其他简单的 unix 命令来做到这一点吗?如何
假设自上次更新(恢复)到我的 a.b 文件以来我做了一些更改。 此 a.b 文件也在存储库中更改。 现在我想将我所做的更改与 repos 更改进行比较。 如果我 svn revert 文件,我可以看到
关闭。这个问题不符合Stack Overflow guidelines .它目前不接受答案。 我们不允许提问寻求书籍、工具、软件库等的推荐。您可以编辑问题,以便用事实和引用来回答。 关闭 7 年前。
我使用的是 openssl 1.0.1c , linux x86_64 我正在创建包含“hello”的文件(没有换行符) openssl dgst -sha256 hello_file i get :
假设我们有几个库。 有什么区别核心和 普通 图书馆?他们应该如何被认可,我们是否组织了两者的职责? +Common -Class1 +Core -Class2 +Lib1 has : Comm
如何在 SQLite 中计算以毫秒为单位的最小时间间隔? 好的,提供一些背景信息, 这是我的 table 的样子: link_budget table 所以有这个时间列,我想发出一个请求,以毫秒为单位
我想知道,乐观并发控制 (OCC) 和多版本并发控制 (MVCC) 之间的区别是什么? 到目前为止,我知道两者都是基于更新的版本检查。 在 OCC 中,我读到了没有获取读取访问锁的事务,仅适用于以后的
说到 SignalR,我有点菜鸟。刚刚开始四处探索和谷歌搜索它,我想知道是否有人可以向我解释完成的事情之间的一些差异。 在我见过的一些示例中,人们需要创建一个 Startup 类并定义 app.Map
我在 Ogre 工作,但这是一个一般的四元数问题。 我有一个对象,我最初对其应用旋转四元数 Q1。后来,我想让它看起来好像我最初通过不同的四元数 Q2 旋转了对象。 我如何计算四元数,该四元数将采用已
我了解 javascript 模块模式,但我使用两种类型的模块模式,并且想从架构 Angular 了解它们之间的区别。 // PATTERN ONE var module = (function()
我有两个具有完全相同键的 JSON。 val json1 = """{ 'name': 'Henry', 'age' : 26, 'activities' : {
我发现使用 VBA 在 Excel 中复制单个文件有两种不同的方法。一是文件复制: FileCopy (originalPath), (pathToCopyTo) 另一个是名称: Name (orig
我想知道查找两个 float 组之间差异的绝对值的最有效方法是什么? 是否是以下内容: private float absDifference(float[] vector1, float[] vec
我有一个关于 wicket getApplication 的问题。 getApplication() 和 getSession().getApplication 有什么区别? 部署 wicket 应用
我刚刚开始使用activemq,我有一个关于追溯消费者的问题,为了启用这个功能,你需要有一个持久的订阅。但是在主题上启用和不启用追溯的持久订阅有什么区别? activemq 文档说。 http://a
我有两个具有完全相同键的 JSON。 val json1 = """{ 'name': 'Henry', 'age' : 26, 'activities' : {
得到另一个 Erlang 二进制表示查询('因为这就是我最近正在阅读的内容,并且需要二进制协议(protocol)实现)。 如果我正确理解了类型说明符,那么对于“浮点”类型值,8 字节表示似乎很好(这
关闭。这个问题需要多问focused 。目前不接受答案。 想要改进此问题吗?更新问题,使其仅关注一个问题 editing this post . 已关闭 4 年前。 Improve this ques
我是一名优秀的程序员,十分优秀!