mirror of
https://github.com/denoland/deno.git
synced 2024-11-21 15:04:11 -05:00
23 lines
269 B
MySQL
23 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');
|