C:\Users\user>sqllocaldb info MSSQLLocalDB
名前: MSSQLLocalDB
バージョン: 13.1.4001.0
共有名:
所有者: WIN11VM\user
自動作成: はい
状態: 実行中
前回の開始時刻: 2024/05/19 21:56:02
インスタンス パイプ名: np:\\.\pipe\LOCALDB#4182CC91\tsql\query
C:\Users\user>sqlcmd -S np:\\.\pipe\LOCALDB#4182CC91\tsql\query -d master
1> create table test(no int, name nvarchar(20));
2> go
1> insert into test values(10, N'山田');
2> go
(1 rows affected)
1> select * from test;
2> go
no name
----------- --------------------
10 山田
(1 rows affected)
1> quit