i've created a table which includes the next columbns: a,b,c,d,e i want to write a "select" query which get o-n-l-y the information from "b" when a exists. can you plz help? thanks in advance
there are a lot of a values and a lot of b values, and they are all different i hope you understood me now
The SQL statement is on a per record basis, meaning that you'll get back a bunch of rows containing the value for b of that row, but only if the value a for that row is not null. So if 5 records match that condition, you'll get back 5 rows.