Database Reference
In-Depth Information
(1 rows)
cqlsh:weblog> INSERT INTO categories (cat_name, blog_id,
post_id, post_title) VALUES ( 'random',
83cec740-22b1-11e4-a4f0-7f1a8b30f852,
047224f0-22b2-11e4-a4f0-7f1a8b30f852, 'first post');
cqlsh:weblog> INSERT INTO categories (cat_name, blog_id,
post_id, post_title) VALUES ( 'welcome',
83cec740-22b1-11e4-a4f0-7f1a8b30f852,
047224f0-22b2-11e4-a4f0-7f1a8b30f852, 'first post');
# Second post
cqlsh:weblog> INSERT INTO posts (id, blog_id, title,
content, tags, posted_on) VALUES (now(),
83cec740-22b1-11e4-a4f0-7f1a8b30f852, 'Fooled by
randomness...', 'posterior=(prior*likelihood)/evidence',
{'random','maths'}, 1407823189000);
cqlsh:weblog> select * from posts;
blog_id | id |
content |
posted_on | tags | title
------------+-----------+---------------------------------------+--------------------------+-----------------------+-------------------------
83cec.... | 04722... | hey
howdy! | 2014-08-12 11:25:21+0530 | {'random', 'welcome'}
| first post
83cec... | c06a4... | posterior=(prior*likelihood)/
evidence | 2014-08-12 11:29:49+0530 | {'maths', 'random'}
| Fooled by randomness...
Search WWH ::




Custom Search