0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

sql 書き込みテスト

Posted at
SELECT @@read_only;

CREATE TEMPORARY TABLE tmp_write_test (
  id BIGINT PRIMARY KEY AUTO_INCREMENT,
  msg VARCHAR(64),
  ts  TIMESTAMP DEFAULT CURRENT_TIMESTAMP
);

INSERT INTO tmp_write_test (msg) VALUES ('aurora write test');

SELECT * FROM tmp_write_test ORDER BY id DESC LIMIT 1;

DROP TEMPORARY TABLE tmp_write_test;
0
0
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?