1
0
Fork 0
mirror of https://github.com/denoland/deno.git synced 2024-11-21 15:04:11 -05:00
denoland-deno/tests/testdata/fmt/badly_formatted.sql

22 lines
269 B
MySQL
Raw Normal View History

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');