PHP代码:(DBadapter.php)
<?php
require_once 'init.php';
class DBadapter
{
public function select()
{
global $con;
$retrived = $con->query("select id,name,quantity from product");
echo"in DBadapter";
if ($retrived) {
在日常的过程中,我已经处理了上百万的数据删除。
基本上我有四张桌子。
Table_A
Table_B
Table_C
Table_D
我试图删除所有表中超过10天的数据。
我可能会在每个表格中删除大约一百万。我已经创建了一个存储过程来执行这些操作。
删除数据所遵循的步骤是
步骤1:将最近几天(我必须保存的数据)移到临时表中。
select * into Table_A_Temp
from Table_A
where <<where clause last 10 days to till date>>
步骤2:将主表重命名为旧表(包含所有天数据的表)
exec sp_re
当我需要用依赖于MySQL的另一个表中的数据删除表中的数据时,我不理解它的删除。
例如,如果我想删除表“工厂”中的数据,表“房间”中依赖于表“工厂”中的数据的所有数据也将被删除。
Fac_ID是“工厂”中的主密钥,“房间”中是外键
下面是我的SQL代码。
DELETE * FROM factory
LEFT JOIN room ON room.Fac_ID = factory.Fac_ID
WHERE factory.Fac_ID = :Fac_ID
有人能帮我吗?
表关系
这是我数据库的截图。
我希望使用Student表中的Student_grade表删除Grade='FAIL'中的所有数据。
所有失败学生的信息都应该从数据库中删除。
Delete from Student
where Student_ID IN (Select Student_ID
from Student_Grade
where Grade = 'FAIL');
试过了但不起作用。我认为数据应该同时从两个表中删除,因为当数据从一个Student表
我有一个实体框架模型连接到Server数据库。我想从模型中删除一个表,而不是从数据库中删除一个表。因此,我在模型中的表上按delete键,得到一个对话框:
Delete Unmapped Tables and Views
The following tables and views in the store model will no longer be mapped. Do you want them deleted?
Yes No Cancel
根据
Yes: In addition to the objects in the conceptual model that you sel