Click here to Skip to main content
15,905,028 members
Please Sign up or sign in to vote.
1.00/5 (1 vote)
See more:
there is two table pmaster_attendance and pmaster_shift the shiftid from pmaster_shift is FK IN pmaster_attendance THEN HOW to select record siftwise and display separate
Posted
Updated 27-Sep-11 23:42pm
v2
Comments
Mehdi Gholam 28-Sep-11 5:33am    
You will have to supply more information.
ramchandra parkale 28-Sep-11 5:42am    
not ans perfect
sachin10d 28-Sep-11 6:15am    
grouping the date on shift can also show the sift wise data

Select *From pmaster_shift ps inner join pmaster_attendance pa on ps.pk_id=pf.fk_id

group by pf.pk_id
 
Share this answer
 
SQL
Select Cast(notes as nvarchar(max)) + 'SomeText' From NotesTable a
 
Share this answer
 
v2

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900