diff --git a/README.md b/README.md index 4d69a21..b925947 100644 --- a/README.md +++ b/README.md @@ -56,6 +56,7 @@ smart people at [Hashrocket](http://hashrocket.com/). - [Timestamp Functions](postgres/timestamp-functions.md) - [Toggling The Pager In PSQL](postgres/toggling-the-pager-in-psql.md) - [Turning Timing On](postgres/turning-timing-on.md) +- [Who Is The Current User](postgres/who-is-the-current-user.md) - [Word Count for a Column](postgres/word-count-for-a-column.md) ### rails diff --git a/postgres/who-is-the-current-user.md b/postgres/who-is-the-current-user.md new file mode 100644 index 0000000..47ad3cb --- /dev/null +++ b/postgres/who-is-the-current-user.md @@ -0,0 +1,21 @@ +# Who Is The Current User + +You can determine the current user of a psql session by selecting on the `current_user` + +```sql +> select current_user; + + current_user +---------------- + test_user +``` + +You can also select on the `user` which is an alias of `current_user` + +```sql +> select user; + + user +---------------- + test_user +```