I'm new to TSQL and am trying to interpret a segment of code originating in a view I'm examining.
The code reads as follows,"SELECT adj_id id, T2.ssn ,NULL Ceris"
Here's my questions.
1.) Am I correct in assuming that adj_id is an alias for the "id" field (since none of the tables involved has a field named "adj_id")?
2.) What does NULL Ceris indicate? "Ceris" is a field in one of the tables but does NULL exclude Ceris records with a Null value or do something else?
The code reads as follows,"SELECT adj_id id, T2.ssn ,NULL Ceris"
Here's my questions.
1.) Am I correct in assuming that adj_id is an alias for the "id" field (since none of the tables involved has a field named "adj_id")?
2.) What does NULL Ceris indicate? "Ceris" is a field in one of the tables but does NULL exclude Ceris records with a Null value or do something else?