InterviewSolution
Saved Bookmarks
| 1. |
Define tokens in PostgreSQL? |
|
Answer» A token in POSTGRESQL is either a keyword, identifier, literal, CONSTANT, quotes identifier, or any symbol that has a distinctive personality. They may or may not be SEPARATED USING a space, NEWLINE or a tab. If the tokens are keywords, they are usually commands with useful meanings. Tokens are known as building blocks of any PostgreSQL code. |
|