Let's suppose I've got a simple table with two columns: user, value
Is it possible to use the function USERNAME within a code in order to filter the information that corresponds only to the user that is logged? Something like this:
Select username, value
from table
where username = USERNAME()
And show only the information that every user should see.
Regards