查询数据 简单的查询 create table stu_info ( sno int not null ,sname ) not null ,sex ) not null ,birth ) not null ,email ) not null ,telephone int not null ,depart ) not null ) select distinct depart from dbo.stu_info -- select order by depart from dbo.stu_inf
平常查询数据 ' 当想要查询 不等于1 的数据的时候,一般会这样查询 ' 此处查询结果没查到所有想要的结果,如果night_flag 列数据为 null时,此行数据是查询不到的. 解决方法一: ' 解决方法二: ' union select * from home where night_flag is null
示例一: 从数据库表A中查询出数据插入到数据库表B 从数据库DataBaseA的表TDA中查询出数据插入到数据库DataBaseB的表TDB insert into [DataBaseA].[dbo].[TDA] (ID,NAME) select ID,NAME from [DataBaseB].[dbo].[TDB] 示例二: 从数据库DataBaseA的表TDA查询出数据列NAME,根据D将对应数据更新到数据库DataBaseB的表TDB的列NAME中. update a set a.NAM
use master GO EXEC sp_addlogin 'infos1', '1', 'master' exec sp_grantdbaccess 'infos311' -- 给访问权限 USE [UniMessage]; grant select,insert,update,delete to [infos311] GO -- 创建用户 create login [infos1] with password='1'; go use [UniMessage]; go create user