8
8

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 5 years have passed since last update.

MySQL 行数固定のデータを生成

Posted at

メモ

SELECT 
	w.*
FROM 
	(SELECT @row_id := @row_id +1 as row_id, w.* FROM works w ) w
RIGHT JOIN (
	SELECT 1 row_id 
UNION ALL
	SELECT 2 row_id 
UNION ALL
	SELECT 3 row_id 
UNION ALL
	SELECT 4 row_id 
UNION ALL
	SELECT 5 row_id 
) x ON w.row_id = x.row_id;

もっといい方法があるかもしれない

8
8
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
8
8

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?