mirror of
https://github.com/denoland/deno.git
synced 2024-11-21 15:04:11 -05:00
22 lines
269 B
MySQL
22 lines
269 B
MySQL
|
select * from foo;
|
||
|
update foo set a = 'b'Where id = 'biz';
|
||
|
|
||
|
|
||
|
create table foo(id text not null
|
||
|
bar text,
|
||
|
biz int,
|
||
|
buz number NOT NULL
|
||
|
);
|
||
|
|
||
|
INSERT
|
||
|
into
|
||
|
user_data
|
||
|
(first_name,
|
||
|
last_name, address, phone, email)
|
||
|
VALUES
|
||
|
('foo', 'bar',
|
||
|
'biz', 1, 'bix');
|
||
|
|
||
|
|
||
|
|