File tree Expand file tree Collapse file tree 1 file changed +40
-2
lines changed Expand file tree Collapse file tree 1 file changed +40
-2
lines changed Original file line number Diff line number Diff line change 1
1
# Free MongoDB GUI powered by PHP
2
2
3
3
Visually administrate your MongoDB database. Create, read, update & delete your documents.<br >
4
- Query your Mongo database with SELECT SQL statements. You can also create & drop indexes .<br >
4
+ Query your MongoDB database with a [ relax JSON syntax ] ( #relaxed-json ) , regular expressions & SQL statements .<br >
5
5
Autocompletion is available for collection fields, MongoDB & SQL keywords via [ key shortcuts] ( #key-shortcuts ) .<br >
6
- Additional features: Export documents to JSON. Import documents from JSON. Manage users.
6
+ Export documents to JSON. Import documents from JSON. Manage indexes. Manage users, etc .
7
7
8
8
## Screenshots
9
9
@@ -30,9 +30,47 @@ Additional features: Export documents to JSON. Import documents from JSON. Manag
30
30
31
31
## Usage
32
32
33
+ ### Query Syntax
34
+
35
+ #### Relaxed JSON
36
+
37
+ MongoDB PHP GUI supports a relaxed JSON syntax. In practice, this query:
38
+
39
+ ``` js
40
+ city: New York
41
+ ```
42
+
43
+ Will produce same result that:
44
+
45
+ ``` js
46
+ { " city" : " New York" }
47
+ ```
48
+
49
+ #### Regular Expressions
50
+
51
+ Imagine you want to find all the US cities starting with "San An". This query:
52
+
53
+ ``` js
54
+ city: / ^ San An/
55
+ ```
56
+
57
+ Will output:
58
+ - San Antonio (FL)
59
+ - San Angelo (TX)
60
+ - ...
61
+
62
+ #### SQL Statements
63
+
64
+ If Java JDK is installed, you can query MongoDB with SQL statements such as:
65
+
66
+ ``` sql
67
+ SELECT * FROM Cities WHERE state = " CA"
68
+ ```
69
+
33
70
### Key Shortcuts
34
71
35
72
<kbd >Ctrl + Space</kbd > Autocomplete the query<br >
73
+ <kbd >Ctrl + * </kbd > Count doc(s) matching the query<br >
36
74
<kbd >Ctrl + Enter</kbd > Find doc(s) matching the query
37
75
38
76
## Credits
You can’t perform that action at this time.
0 commit comments