yes
This commit is contained in:
parent
a4183a1970
commit
7a9ddb910b
1 changed files with 12 additions and 0 deletions
|
@ -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
|
||||
|
|
Loading…
Reference in a new issue