5 lines
515 B
MySQL
5 lines
515 B
MySQL
|
SELECT dbo.Roles.RoleName, dbo.Users.LikeCount, dbo.Users.UserDescription, dbo.Users.UserName, dbo.ProfilePicture.PictureFileName, dbo.ProfilePicture.Height, dbo.ProfilePicture.Width
|
||
|
FROM dbo.Roles INNER JOIN
|
||
|
dbo.RoleAllocation ON dbo.Roles.RoleID = dbo.RoleAllocation.RoleID INNER JOIN
|
||
|
dbo.Users ON dbo.RoleAllocation.UserID = dbo.Users.UserID INNER JOIN
|
||
|
dbo.ProfilePicture ON dbo.Users.UserID = dbo.ProfilePicture.UserID
|