Changes between Version 1 and Version 2 of UseCaseUC5PrototypeImplementation


Ignore:
Timestamp:
08/23/26 19:51:42 (4 days ago)
Author:
231118
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • UseCaseUC5PrototypeImplementation

    v1 v2  
    3434
    3535{{{
    36 SELECT
    37     pid,
    38     name,
    39     cpu_percent,
    40     memory_mb,
    41     username
     36SELECT pid, name, cpu_percent, memory_mb, username
    4237FROM computer_processes_current
    43 WHERE computer_id =
    44 (
    45     SELECT id
    46     FROM computers
    47     WHERE name = 'Ilina-laptop'
    48 )
     38WHERE computer_id = (SELECT id FROM computers WHERE tenant_id = 1 AND name = 'Ilina-laptop')
    4939ORDER BY cpu_percent DESC;
    5040}}}