blob: 8a030616131e6be688cd4331393419dbc0a5be0c (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
INSERT INTO nexus_stores.cashier_shifts
VALUES
(
30000,
'68cdd3ec',
NULL,
78,
timestamp '2059-12-01 13:00:00',
timestamp '2059-12-01 15:00:00'
);
INSERT INTO nexus_stores.sales
SELECT 325000, id AS product_id,'68cdd3ec',78,timestamp '2059-12-01 14:47:07'
FROM nexus_stores.products
WHERE name = 'Golden Apple';
|