i'm on new project , there lot of sql server stored procedures in i'm tasked working on, improving, fixing etc..
i surprised see code this:
select distinct a.* tbl_applicant
- when code work?
- if did work on tables, masking proper results?
- what should used instead?
- if table
tbl_applicant
exists - no, it's eliminate dupliacte rows.
select col1,col2 ... tbl_applicant group col1,col2 ...
or aliasa
select a.col1, a.col2 ... tbl_applicant group a.col1,a.col2 ...
Comments
Post a Comment