Jump to content

Syntax for Select Statement

- - - - -

  • Please log in to reply
2 replies to this topic

#1
newphpcoder

newphpcoder

    Programming Professional

  • Members
  • PipPipPipPipPipPip
  • 474 posts
Good day!


I want to know if what is the correct sysntax for Selecting multiple data in one column.


I have a table trace and i have column name and id
my list name are: name1, name1total, name2,name2total,name3,name4, and name5, but i wamnt to select only is the name 1,name3,name4, and name5
I have a table trans and it has id.

I try this code:


SELECT t.name FROM trace t, trans c WHERE t.name = 'name1' || 'name 3' || 'name4' || 'name5' AND t.id=c.id;


In that code all the name was selected eventhough I did not select the name1total,name2,name2total.

Thank you

#2
wim DC

wim DC

    Writes binary right handed and hex left handed

  • Members
  • PipPipPipPipPipPipPipPipPip
  • 2,084 posts
  • Programming Language:Java, JavaScript, PL/SQL
  • Learning:Java
I'm not quite sure on
t.name = 'name1' || 'name 3' || 'name4' || 'name5' 
Try
t.name='name1' OR t.name='name 3' OR ...
or better
t.name IN ('name1', 'name3', '....)


#3
newphpcoder

newphpcoder

    Programming Professional

  • Members
  • PipPipPipPipPipPip
  • 474 posts
thank you




1 user(s) are reading this topic

0 members, 1 guests, 0 anonymous users