I'm trying to the number of the elements of two tables here is what I've tried :
select
((select count(*) from Person,Professor where ID_Person = ID_Professor) +
(select count(*) from Person, Student where ID_Person = ID_Student ))
well this doesn't work any Idea how can I do this? thanks in advance