JUST GO

[공통] SSMS 본문

임베디드/학습내용

[공통] SSMS

root_go 2022. 12. 2. 14:41

1. MSSQL설치 및 SSMS 설치

https://blueshare.tistory.com/42 

 

MS SQL Server 2019 및 SSMS 설치 방법 - 윈도우 11

MS SQL Server 2019 및 SSMS 설치 방법 - 윈도우 11 포스트 기준 윈도우(Windows) 11 Microsoft SQL Server 2019 SSMS(SQL Server Management Studio) 18.10 설치 순서 MS SQL Server 2019 설치 파일 다운로드 MS SQL Server 2019 설치 SSMS

blueshare.tistory.com

2. MS-SQL DB서버 외부연결설정

https://timeboxstory.tistory.com/10

 

[MSSQL] SQL Server 연결 및 외부(원격) 연결 설정

앞 포스트에서 MSSQL SQL Server 2017 & SSMS (MSSQL Server Management Studio) 설치를 완료 했습니다. 아직 설치를 하지 않았다면 진행먼저 !! 설치 및 다운로드 : https://timeboxstory.tistory.com/9 [MSSQL] SQL 다운로드 및

timeboxstory.tistory.com

 

IP주소
내부 IP주소 : 공유기 IP주소(내부 네트워크 구성, ex:E클래스반)
-> ex: 192.168.5.50
외부 IP주소
-> ex: 외부IP주소
랜카드 IP주소
->127.0.0.1 = localhost

 

3. Ms-Sql DB명령어

 

(1) 데이터 베이스 생성 명령어

    CREATE DATABASE testdb    

(2) 데이터 베이스 삭제 명령어

    DROP DATABASE testdb

(3) 데이터 추가

USE testdb

INSERT INTO TB_user(ID, NAME, AGE, JOB) VALUES('1', '홍길동', '20', '학생')

(4) 데이터 조회

USE testdb

SELECT ID, NAME, AGE, JOB FROM TB_user

 

데이터 베이스 접속 정보 문자열로 저장

String connectionStr = "Data Source=192.168.5.50; Initial Catalog=testdb; User Id=sa; Password=1234";

데이터 베이스 명령어 문자열로 저장
string selectSQL = "SELECT ID, NAME, AGE, JOB FROM TB_user";
데이터 베이스 명령어 문자열로 저장
using (SqlConnection connection = new SqlConnection(connectionStr)) // 데이터베이스 연결객체(connection) 생성
// msSQL 접속하기위한 클래스(SqlConnection)

 

using (SqlConnection connection = new SqlConnection(connectionStr)) // 데이터베이스 연결객체(connection) 생성
                // msSQL 접속하기위한 클래스(SqlConnection)
            {
                connection.Open();  // 데이터베이스 연결요청
                using(SqlCommand cmd = new SqlCommand())    // 데이터베이스 명령어 객체(cmd) 생성
                {
                     
                }
            }

 

SSMS = SQL Server Management Server(Studio)