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_fixed.sql

23 lines
269 B
MySQL
Raw Permalink 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');