🧚 注目!Beekeeper Studioは高速でモダン、オープンソースのデータベースGUIです
ダウンロード
March 17, 2023
著者:
Beekeeper Studio Staff
Description
Adds a new row to a table or a view.
Syntax
INSERT [ INTO] { table_name | view_name } [ ( column_list ) ]
VALUES ( expression [ ,...n] )
OR
INSERT [ INTO] { table_name | view_name } [ ( column_list ) ]
select_statement
Example
INSERT table1 (c1)
VALUES (9)
OR
INSERT table1 (c1)
SELECT c1
FROM table2
Detail
INSERT appends new rows to a table. To replace data in a table, the DELETE or TRUNCATE TABLE statements must be used to clear existing data before loading new data with INSERT. To modify column values in existing rows, use UPDATE. To create a new table and load it with data in one step, use the INTO option of the SELECT statement.
INSERT permissions default to members of the sysadmin fixed server role, the db_owner and db_datawriter fixed database roles, and the table owner. Members of the sysadmin, db_owner, and the db_securityadmin roles, and the table owner can transfer permissions to other users.
Beekeeper Studioは無料でオープンソースのデータベースGUIです
今まで使った中で最高のSQLクエリ&エディタツールです。データベース管理に必要なすべてが揃っています。 - ⭐⭐⭐⭐⭐ Mit
Beekeeper Studioは高速で直感的、使いやすいです。Beekeeperは多くのデータベースをサポートし、Windows、Mac、Linuxで快適に動作します。
Beekeeper Studioについてユーザーの声
★★★★★
"Beekeeper Studioは私の古いSQLワークフローを完全に置き換えました。高速で直感的で、データベース作業を再び楽しくしてくれます。"
— Alex K.、データベース開発者
★★★★★
"多くのデータベースGUIを試しましたが、Beekeeperは機能とシンプルさの完璧なバランスを実現しています。とにかく動きます。"
— Sarah M.、フルスタックエンジニア