Level Extreme platform
Subscription
Corporate profile
Products & Services
Support
Legal
Français
Enhancement actual select to update all rows
Message
From
03/01/2013 09:58:06
 
 
To
03/01/2013 09:07:27
General information
Forum:
Microsoft SQL Server
Category:
SQL syntax
Environment versions
SQL Server:
SQL Server 2008
Application:
Web
Miscellaneous
Thread ID:
01561223
Message ID:
01561244
Views:
43
The following seems to work:
UPDATE Menu2 SET Count=Temp.RecordCount FROM Menu AS Menu2 JOIN (SELECT Menu.Numero,COUNT(*) AS RecordCount
FROM Menu
INNER JOIN MenuEntity ON Menu.Numero=MenuEntity.NoMenu
INNER JOIN MenuPrivilege ON Menu.Numero=MenuPrivilege.NoMenu
INNER JOIN MenuRole ON Menu.Numero=MenuRole.NoMenu
INNER JOIN DBUsers ON MenuEntity.NoEntity=DBUsers.NoEntity AND MenuPrivilege.NoType=DBUsers.NoType AND MenuRole.NoRole=DBUsers.NoRole
WHERE Menu.Numero NOT IN (SELECT Menu.Numero FROM MenuPrivilegeExceptionCase
INNER JOIN Menu ON MenuPrivilegeExceptionCase.NoMenu=Menu.Numero
WHERE MenuPrivilegeExceptionCase.NoMember=DBUsers.AI)
GROUP BY Menu.Numero
UNION
SELECT Menu.Numero,COUNT(*) AS RecordCount
FROM Menu
INNER JOIN MenuPrivilegeExceptionCase ON Menu.Numero=MenuPrivilegeExceptionCase.NoMenu AND
MenuPrivilegeExceptionCase.Enabled=1
INNER JOIN MenuEntity ON Menu.Numero=MenuEntity.NoMenu
INNER JOIN DBUsers ON MenuEntity.NoEntity=DBUsers.NoEntity
WHERE MenuPrivilegeExceptionCase.NoMember=DBUsers.AI
GROUP BY Menu.Numero) Temp ON Temp.Numero=Menu2.Numero
Michel Fournier
Level Extreme Inc.
Designer, architect, owner of the Level Extreme Platform
Subscribe to the site at https://www.levelextreme.com/Home/DataEntry?Activator=55&NoStore=303
Subscription benefits https://www.levelextreme.com/Home/ViewPage?Activator=7&ID=52
Previous
Next
Reply
Map
View

Click here to load this message in the networking platform