This commit is contained in:
hexlocation 2024-09-08 02:02:01 +02:00
parent a4183a1970
commit 7a9ddb910b

View file

@ -48,6 +48,18 @@ ALTER DATABASE [db] OWNER TO [user];
\dt
```
### Show all data in table
```
SELECT * from [table];
```
### Change field in entry
```
UPDATE [table] SET password = 123 WHERE username = hexlocation;
```
## Troubleshooting
### Reserved Keywords