-
Notifications
You must be signed in to change notification settings - Fork 0
/
record_link.surql
30 lines (23 loc) · 1020 Bytes
/
record_link.surql
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
REMOVE TABLE review;
REMOVE TABLE artist;
CREATE review;
CREATE artist;
UPDATE review:00a0ic854u4j7z02s00v
CONTENT { artist: artist:00b2pg847d7b8r08t08t,
id: review:00a0ic854u4j7z02s00v,
person: person:67s8cp304i4p6p83q02d,
product: product:41v2qv923h3o7s55e96l,
rating: 3, review_text: 'repeat exchange meter lawyer academy sunset gang' };
UPDATE artist:00b2pg847d7b8r08t08t
CONTENT { address: { address_line_1: '816 Cravenny',
address_line_2: NONE,
city: 'Malvern',
coordinates: [9.854998, -0.731803],
country: 'England', post_code: 'HO1D 8WY' },
company_name: NONE, email: '[email protected]',
first_name: 'Lasonya', id: artist:00b2pg847d7b8r08t08t,
last_name: 'Spears', name: 'Lasonya Spears', phone: '0800 085411' };
SELECT id,rating, artist.address.city
AS city, artist.email
AS email
FROM review;