Ubuntu 24.04

SQL Server 2025 : T-SQL Basic Usage2026/03/06

 

This is some basic example of usage for Transact-SQL (T-SQL).

[1] Create/Delete Databases.
root@dlp:~#
sqlcmd -C -S localhost -U SA

Password:

# create [SampleDB] database
1> create database SampleDB; 
2> go 

# create a database with parameters
1> create database SampleDB2 
2> on primary ( name = 'SampleDB2',
3> filename = '/var/opt/mssql/data/SampleDB2.mdf',
4> size = 5GB, maxsize = unlimited, filegrowth = 10MB )
5> log on ( name = 'SampleDB2_log',
6> filename = '/var/opt/mssql/data/SampleDB2_log.ldf',
7> size = 1GB, maxsize = 2GB, filegrowth = 5% )
8> go

# list databases
1> select name,create_date from sys.databases;
2> go
name                       create_date
-------------------------- -----------------------
master                     2003-04-08 09:13:36.390
tempdb                     2026-03-06 00:23:07.233
model                      2003-04-08 09:13:36.390
msdb                       2026-01-29 18:40:16.640
SampleDB                   2026-03-06 01:08:33.977
SampleDB2                  2026-03-06 01:09:00.190

(6 rows affected)

# delete [SampleDB2] database
1> drop database SampleDB2; 
2> go 
[2] Create/Delete Tables.
# connect to SQL Server with a database

root@dlp:~#
sqlcmd -C -S localhost -U SA -d SampleDB

Password:

# create [Sample_Table] table
1> create table dbo.Sample_Table ( 
2> Number nvarchar(10) not null, 
3> First_Name nvarchar(50) not null, 
4> Last_Name nvarchar(50) null, 
5> Last_Update date not null )
6> go 

# list tables
1> select name from sysobjects 
2> where xtype='u' 
3> go 
name
----------------------------------
trace_xe_action_map
trace_xe_event_map
spt_fallback_db
spt_fallback_dev
spt_fallback_usg
MSreplication_options
Sample_Table
spt_monitor

(8 rows affected)

# delete [Sample_Table] table
1> drop table dbo.Sample_Table; 
2> go 
[3] Insert/Update/Delete Data.
root@dlp:~#
sqlcmd -C -S localhost -U SA -d SampleDB

Password:

# insert data
1> insert into dbo.Sample_Table ( Number, First_Name, Last_Name, Last_Update )
2> values ( '00001', 'Ubuntu', 'Linux', '2026-03-06' ),
3> ( '00002', 'Debian', 'Linux', '2026-03-06' ),
4> ( '00003', 'RedHat', 'Linux', '2026-03-06' )
5> go 

(3 rows affected)

1> select * from dbo.Sample_Table; 
2> go 
Number     First_Name          Last_Name     Last_Update    
---------- ------------------- ------------- ----------------
00001      Ubuntu              Linux               2026-03-06
00002      Debian              Linux               2026-03-06
00003      RedHat              Linux               2026-03-06

(3 rows affected)

# show tables with specifying columns
1> select Number, First_Name from dbo.Sample_Table; 
2> go 
Number     First_Name
---------- --------------------------------------------------
00001      Ubuntu
00002      Debian
00003      RedHat

(3 rows affected)

# show top 2 data
1> select top 2 * from dbo.Sample_Table; 
2> go 
Number     First_Name          Last_Name     Last_Update    
---------- ------------------- ------------- ----------------
00001      Ubuntu              Linux               2026-03-06
00002      Debian              Linux               2026-03-06

(2 rows affected)

# update data
1> update dbo.Sample_Table set Last_Update = '2026-03-07' where First_Name = 'Ubuntu' 
2> go 

(1 rows affected)

1> select * from dbo.Sample_Table where First_Name ='Ubuntu'; 
2> go 
Number     First_Name         Last_Name     Last_Update    
---------- ------------------ ------------- ----------------
00001      Ubuntu             Linux               2026-03-07

(1 rows affected)

# delete data
1> delete dbo.Sample_Table where First_Name ='Ubuntu'; 
2> go 

(1 rows affected)
1> select * from dbo.Sample_Table where First_Name ='Ubuntu'; 
2> go 
Number     First_Name    Last_Name     Last_Update
---------- ------------- ------------- ----------------

(0 rows affected)
[4] It's also possible to run T-SQL directly like follows.
root@dlp:~#
sqlcmd -C -S localhost -U SA -Q 'select name,create_date from sys.databases'

Password:
name                    create_date
----------------------- -----------------------
master                  2003-04-08 09:13:36.390
tempdb                  2026-03-06 00:23:07.233
model                   2003-04-08 09:13:36.390
msdb                    2026-01-29 18:40:16.640
SampleDB                2026-03-06 01:08:33.977
SampleDB2               2026-03-06 01:09:00.190

(6 rows affected)
Matched Content