1
0
Fork 0
mirror of https://github.com/swisskyrepo/PayloadsAllTheThings.git synced 2024-06-07 19:56:26 +02:00

Merge pull request #291 from marcan2020/patch-11

Remove unnecessary condition to extract columns
This commit is contained in:
Swissky 2020-11-18 10:12:53 +01:00 committed by GitHub
commit a639121b21
Signed by: GitHub
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -37,7 +37,7 @@ Use limit X+1 offset X, to extract all tables.
## Integer/String based - Extract column name
```sql
SELECT sql FROM sqlite_master WHERE type!='meta' AND sql NOT NULL AND name NOT LIKE 'sqlite_%' AND name ='table_name'
SELECT sql FROM sqlite_master WHERE type!='meta' AND sql NOT NULL AND name ='table_name'
```
For a clean output