由买买提看人间百态

topics

全部话题 - 话题: table2
首页 上页 1 2 3 4 5 6 下页 末页 (共6页)
x******m
发帖数: 736
1
来自主题: Database版 - 请教一个sql问题
table2用来表明table1中每个col的category,比如你的table
id col value col_id category
1 身高,1米八 3 body_index
1 体重,300斤 4 body_index
1 职业,学生 1 other_index
2 身高,1米七 3 body_index
m*********a
发帖数: 3299
2
select t1.id, t1.value
from table1 t1
where To_char(t1.id)||'_'||t1.value
not in
(
select To_char(t2.id)||'_'||t2.value
from table2 t2
)
m*****y
发帖数: 229
3
sql server 的话,这个应该work。
select t2.*
from table2 t2
where not exists (select 1 from table1 t1 where t1.id=t2.id and t1.value=t2.
value)
B*****g
发帖数: 34098
4
来自主题: DotNet版 - 问个sql问题
你问错版了
http://www.w3schools.com/sql/sql_distinct.asp

table2.
相同
S****e
发帖数: 10596
5
来自主题: DotNet版 - 问个sql问题
本来用了distinct 没问题,可我还要加入 order by newid() 来random
结果发现不行,网上一查,原来是个普遍问题
以下连接有解,虽然还没弄明白到底啥原理,不过管事就行
http://www.sqlteam.com/forums/topic.asp?TOPIC_ID=103589

table2.
相同
首页 上页 1 2 3 4 5 6 下页 末页 (共6页)