172k views
0 votes
Which of the following statements identifies and authorizes login tokens?

A. SELECT * FROM sys.user_token;
B. SELECT * FROM sys.login_token;
C. SELECT * FROM sys.loginuser_token;
D. SELECT * FROM sys.userlogin_token;

1 Answer

2 votes

Final answer:

The correct statement that identifies and authorizes login tokens is option A: SELECT * FROM sys.user_token;

Step-by-step explanation:

  1. The correct statement that identifies and authorizes login tokens is option A: SELECT * FROM sys.user_token;
  2. Option B: SELECT * FROM sys.login_token; is incorrect as there is no built-in table called 'sys.login_token' in the system.
  3. Option C: SELECT * FROM sys.loginuser_token; is also incorrect as there is no built-in table called 'sys.loginuser_token' in the system.
  4. Option D: SELECT * FROM sys.userlogin_token; is incorrect as there is no built-in table called 'sys.userlogin_token' in the system.

User Verdure
by
7.8k points