求mysql语句(insert之前先查询)
数据表如下:
<code>id parent a b others --------------------------------------- 1 0 7 8 --------------------------------------- 2 1 8 7 --------------------------------------- 3 1 7 8 --------------------------------------- 4 1 8 7 ---------------------------------------</code>
比如:现在已知a=7、b=8,但不知道parent的值,插入之前要查询数据表中已存在a=7 && b=8
的,或者a=8 && b=7
的那条记录的parent的值(保证数据表中满足a=7 && b=8
,或者a=8 && b=7
的那些记录的parent都是同一个值)。
请问如何写sql?先select后insert?一条语句能搞定么
回复内容:
数据表如下:
<code>id parent a b others --------------------------------------- 1 0 7 8 --------------------------------------- 2 1 8 7 --------------------------------------- 3 1 7 8 --------------------------------------- 4 1 8 7 ---------------------------------------</code>
比如:现在已知a=7、b=8,但不知道parent的值,插入之前要查询数据表中已存在a=7 && b=8
的,或者a=8 && b=7
的那条记录的parent的值(保证数据表中满足a=7 && b=8
,或者a=8 && b=7
的那些记录的parent都是同一个值)。
请问如何写sql?先select后insert?一条语句能搞定么
@Eapen 参考我对你的回答的评论。
@xaero 我觉得你的问题把我们都带偏了。
对于消息的首发来说是不存在parent这个属性的,因为消息是按照时间顺序排列的。只有论坛的帖子回复才有parent的问题,这个parent可以在前台显示的时候使用,可以把相关的讨论集中起来便于阅读,因为这种结构打破了发帖时间的规律,所以才需要额外的指定parent。
明显消息不存在这个问题,就算你的消息是针对某个话题产生的,那也应该是reference_id而不是parent。
你们觉得呢?
我理解你的意思了。这可以通过另一个表去维护。
table message_groups
group_id users
1 7,8 //信息交流者,按照用户id从小到大排列,用逗号分隔
2 7,9
...
table messages
group_id from_user to_user message time
1 7 8 Test1 ....
1 8 7 Re: Test1 ....
这样你觉得有帮助吗?
<code>IF EXISTS (SELECT * FROM Table_Name WHERE (a='7' and b='8') OR (a='8' and b='7')) BEGIN --EXIST END ELSE BEGIN INSERT INTO Table_Name(Column,...) VALUES('') END</code>
有点没懂 为什么不知道parent的值?在读取列表的时候就应该知道id的值了呀写入的时候直接带上就行
oschina的私信功能就是这样的,明明是已经存在的一对用户会话,我不“回复”,点“新发送”,也会归纳为原先的会话。。。不知道是怎么实现的。。。。oschina上都是无关痛痒的聊天,没人答
你可以写存储过程的,可以完美解决你的问题。

Hot AI Tools

Undresser.AI Undress
AI-powered app for creating realistic nude photos

AI Clothes Remover
Online AI tool for removing clothes from photos.

Undress AI Tool
Undress images for free

Clothoff.io
AI clothes remover

AI Hentai Generator
Generate AI Hentai for free.

Hot Article

Hot Tools

Notepad++7.3.1
Easy-to-use and free code editor

SublimeText3 Chinese version
Chinese version, very easy to use

Zend Studio 13.0.1
Powerful PHP integrated development environment

Dreamweaver CS6
Visual web development tools

SublimeText3 Mac version
God-level code editing software (SublimeText3)

Hot Topics

PHP 8.4 brings several new features, security improvements, and performance improvements with healthy amounts of feature deprecations and removals. This guide explains how to install PHP 8.4 or upgrade to PHP 8.4 on Ubuntu, Debian, or their derivati

To work with date and time in cakephp4, we are going to make use of the available FrozenTime class.

To work on file upload we are going to use the form helper. Here, is an example for file upload.

CakePHP is an open-source framework for PHP. It is intended to make developing, deploying and maintaining applications much easier. CakePHP is based on a MVC-like architecture that is both powerful and easy to grasp. Models, Views, and Controllers gu

Working with database in CakePHP is very easy. We will understand the CRUD (Create, Read, Update, Delete) operations in this chapter.

Validator can be created by adding the following two lines in the controller.

Visual Studio Code, also known as VS Code, is a free source code editor — or integrated development environment (IDE) — available for all major operating systems. With a large collection of extensions for many programming languages, VS Code can be c

Logging in CakePHP is a very easy task. You just have to use one function. You can log errors, exceptions, user activities, action taken by users, for any background process like cronjob. Logging data in CakePHP is easy. The log() function is provide
