python (12.9k questions)
javascript (9.2k questions)
reactjs (4.7k questions)
java (4.2k questions)
java (4.2k questions)
c# (3.5k questions)
c# (3.5k questions)
html (3.3k questions)
simplify simple query sql
Can someone help me simplify the following query into one line .
SELECT
LL_ID,
LL_VOORNAAM,
LB_VAN_VAN,
LB_VAN_TOT,
LB_VAN_ID,
LB_VAN_INUIT_FK,
LB_NAAR_INUIT_FK,
iu_vorigeinuit...
Tonathiu Redrovan
Votes: 0
Answers: 1
How do I select rows where elements of group have the same value?
I have a table like this:
prop1 | prop2
aaa | xxx
aaa | xxx
bbb | yyy
bbb | !yyy
ccc | zzz
ccc | zzz
ddd | !kkk
ddd | kkk
and I want to be like:
prop1 | prop2
bbb | yyy
...
Roberto palmer
Votes: 0
Answers: 1
How to create trigger to take value from another table depends of value from first table
I'm lost with triggers in SQL
Have one main table with all data, second table is only for support of first table. I need a trigger to get value from second table depends of value from first table.
fir...
Novice
Votes: 0
Answers: 2