求一个sql语句?请各位帮忙

songxing 2007-05-16 09:29:25
表结构:
subid subname paretnid
1001 现金科目 1001
10010 人民币 1001
1002 银行存款 1002

如果subid 和 parentid 相同则是一级科目反之是二级科目。
现在的问题是如何把所有的两级科目和没有两级科目的一级科目列出来。
...全文
173 5 打赏 收藏 转发到动态 举报
写回复
用AI写文章
5 条回复
切换为时间正序
请发表友善的回复…
发表回复
songxing 2007-05-16
  • 打赏
  • 举报
回复
多谢andy1995
songxing 2007-05-16
  • 打赏
  • 举报
回复
多谢libin_ftsafe(子陌红尘)
拓狼 2007-05-16
  • 打赏
  • 举报
回复
--产生测试数据
declare @t table(subid varchar(100), subname varchar(100), parentid varchar(100))


insert into @t select '1001', '现金科目', '1001'
union all select '10010', '人民币' , '1001'
union all select '1002' , '银行存款', '1002'
--解决方法
select * from @t a
where subid<>parentid
or subid=parentid
and not exists(select * from @t b
where b.subid<>b.parentid and a.subid=b.parentid)
子陌红尘 2007-05-16
  • 打赏
  • 举报
回复
declare @t table(subid int,subname varchar(10),paretnid int)
insert into @t select 1001 ,'现金科目',1001
insert into @t select 10010,'人民币 ',1001
insert into @t select 1002 ,'银行存款',1002

select
t.*
from
@t t
where
t.paretnid! = t.subid
or
not exists(select 1 from @t where paretnid=t.subid and paretnid!=subid)

/*
subid subname paretnid
----------- ---------- -----------
10010 人民币 1001
1002 银行存款 1002
*/
子陌红尘 2007-05-16
  • 打赏
  • 举报
回复
select
t.*
from
表 t
where
t.paretnid! = t.subid
or
not exists(select 1 from 表 where paretnid=t.subid and paretnid!=subid)
内容概要:SSD2828QN4是一款MIPI主桥接芯片,用于连接应用处理器与传统并行LCD接口及支持MIPI从属接口的LCD驱动器。该芯片支持最高每通道1Gbps的串行链路速度,最多可配置4个数据通道,显著减少了信号数量。它支持多种接口模式,包括RGB+SPI组合接口,适用于驱动智能或非智能显示面板,并能通过命令模式和视频模式传输数据。芯片内置时钟和复位模块、外部接口、协议控制单元(PCU)、包处理单元(PPU)、错误校正码/循环冗余校验(ECC/CRC)模块、长包和命令缓冲区、D-PHY控制器、模拟收发器以及内部锁相环(PLL),确保了高效的数据传输和系统稳定性。此外,文档详细描述了芯片的引脚分配、寄存器设置、操作模式、电源序列、时序特性等关键参数,为开发者提供了全面的技术指导。 适合人群:具备一定硬件设计基础,从事嵌入式系统开发、显示技术研究的研发人员。 使用场景及目标:①实现应用处理器与MIPI兼容显示屏之间的高速数据传输;②优化显示系统的功耗表现,减少电磁干扰(EMI);③通过灵活配置不同接口模式来适应各种显示设备的需。 阅读建议:此文档面向具有一定电子工程背景的专业人士,建议读者结合实际项目需深入理解各章节内容,特别是关于寄存器配置、时序要等方面的具体说明。对于初次接触此类技术的开发者而言,建议先熟悉基本概念再逐步掌握高级功能的应用方法。

34,875

社区成员

发帖
与我相关
我的任务
社区描述
MS-SQL Server相关内容讨论专区
社区管理员
  • 基础类社区
  • 二月十六
  • 卖水果的net
加入社区
  • 近7日
  • 近30日
  • 至今
社区公告
暂无公告

试试用AI创作助手写篇文章吧