SQL语言创建数据库表

--(注释)select *from dbo.Base_Department where State=0


create database testljd
go
use testljd
go
create table testljd1
(
 ljd_id int,
 ljd_name varchar(30)
)

select* from testljd

SQL语言创建数据库表_第1张图片

你可能感兴趣的:(sql,数据库,创建)