What command do I use to place a parameter in a list in sql?

0

I was running a test appeared an issue saying to create a list in which the values were not greater than 6, I could not understand very well doing this.

    
asked by anonymous 04.12.2017 / 14:55

1 answer

0

I believe that you are requesting that you return the records of a table whose value of a given field is not greater than 6.

If it were this would have to do so:

select *
from tabela
where campo <= 6
    
05.12.2017 / 20:02