Skip to content
Merged
Changes from 1 commit
Commits
Show all changes
41 commits
Select commit Hold shift + click to select a range
46889f0
Fix subtitle marker in Creating Tables.
austin-hilberg Dec 4, 2018
99a9019
Merge branch 'master' of https://github.com/datajoint/datajoint-python
austin-hilberg Dec 11, 2018
3e74a31
Add Python sections for Key Source.
austin-hilberg Dec 13, 2018
9fcf61a
Shuffle non-lang-spec content in Drop.
austin-hilberg Dec 13, 2018
7f9e5dd
Shuffle non-lang-spec content in Delete.
austin-hilberg Dec 14, 2018
d411ca7
Fix syntax in Universal Sets .aggr statements.
austin-hilberg Dec 14, 2018
2767613
Fix syntax in Aggr.
austin-hilberg Dec 14, 2018
0baa7ac
Reorder Restriction sections. Fix/add Python examples.
austin-hilberg Dec 14, 2018
d615baa
Add lang-spec Restriction portion. Shift filenames.
austin-hilberg Dec 14, 2018
e625e17
Add Python examples of restriction by string.
austin-hilberg Dec 14, 2018
c288b48
Document use with Pandas DataFrames in Insert, Fetch, and Restriction.
austin-hilberg Dec 14, 2018
e1c74c4
Add example of server-side inserts.
austin-hilberg Dec 14, 2018
8b4aaf1
Merge branch 'master' of https://github.com/datajoint/datajoint-python
austin-hilberg Dec 14, 2018
2bf63db
Make Table creation on the database server more concise.
austin-hilberg Dec 14, 2018
7a5f80a
Fix definition string in Creating Tables.
austin-hilberg Dec 14, 2018
c1b64a4
Mention returning primary key values along with other attributes as s…
austin-hilberg Dec 14, 2018
dbd28e7
Add lang-spec file for Virtual.
austin-hilberg Dec 14, 2018
7760ea6
Add lang-spec content for Virtual.
austin-hilberg Dec 14, 2018
cf64196
Add more lang-spec blob-config sections.
austin-hilberg Dec 14, 2018
5dc48a0
Add content for new lang-spec blob-config pages.
austin-hilberg Dec 14, 2018
c05cc95
Fix spacing in Virtual.
austin-hilberg Dec 14, 2018
73ebe0e
Merge branch 'master' of https://github.com/datajoint/datajoint-python
austin-hilberg Dec 17, 2018
1de86b7
Add lang-spec page in Populate.
austin-hilberg Dec 17, 2018
baa78ae
Move Python content to lang-spec page in Populate.
austin-hilberg Dec 17, 2018
f699a33
Move Python content to lang-spec page in Populate.
austin-hilberg Dec 17, 2018
227b0b4
Move Python content to lang-spec file in Progress.
austin-hilberg Dec 17, 2018
f46de91
Explain optional insert parameters.
austin-hilberg Dec 17, 2018
359022c
Reword discussion of classes.
austin-hilberg Dec 18, 2018
e9d539e
Add lang-spec files for Join.
austin-hilberg Dec 18, 2018
bedd06c
Remove lang-spec files for Join.
austin-hilberg Dec 18, 2018
1bd2fca
Fix indentation and edit blob config lang2.
austin-hilberg Dec 18, 2018
69fcb46
Update docs-parts/existing/1-Virtual-Modules_lang1.rst
dimitri-yatsenko Dec 18, 2018
736a41d
Update docs-parts/existing/1-Virtual-Modules_lang1.rst
dimitri-yatsenko Dec 18, 2018
31e52ba
Update docs-parts/existing/1-Virtual-Modules_lang1.rst
dimitri-yatsenko Dec 18, 2018
2f0e884
Update docs-parts/queries/06-Restriction_lang4.rst
dimitri-yatsenko Dec 18, 2018
8e3e790
Update docs-parts/queries/06-Restriction_lang5.rst
dimitri-yatsenko Dec 18, 2018
db37e79
Add Integrity lang-spec pages.
austin-hilberg Dec 19, 2018
9e0c432
Remove empty.txt from Concepts.
austin-hilberg Dec 19, 2018
18b1d73
Add lang-spec content for Integrity.
austin-hilberg Dec 19, 2018
9d784bd
Fix cache folder section.
austin-hilberg Dec 19, 2018
71abc6e
Provide example of cache setting.
austin-hilberg Dec 19, 2018
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
Add Python examples of restriction by string.
  • Loading branch information
austin-hilberg committed Dec 14, 2018
commit e625e17501549413bd7cda6edc08bf30372b3541
5 changes: 4 additions & 1 deletion docs-parts/queries/06-Restriction_lang3.rst
Original file line number Diff line number Diff line change
@@ -1,5 +1,8 @@

.. code-block:: python

Session & {'session_dat': "2018-01-01"}
# All the sessions performed by Alice
Session & 'user = "Alice"'

# All the experiments at least one minute long
Experiment & 'duration >= 60'