问题描述
- SQL servel数据库开发
-
go
use QQmaster--打开数据库
create table QQuser--创建QQuser表
(
--数据库表中各字段及字段类型
QQID bigint primary key,
PassWord varchar check(len(password)>=6) not null,
LastLogTime datetime not null,
Online int check(online=0 or online=1 or online=2) not null,
Level int default 0 not null,这是我创建的数据库表格select * from QQuser
insert into QQuser (QQID,password,LastLogTime,Online,Level)
values(54789625,'add512#&','03/17/2009 18:09:37',2,1)
这是我插入的语句不明白错在哪希望好心人帮我解答下,谢谢
解决方案
在查询编辑器里面执行一下就能知道错在哪里了
时间: 2024-11-01 16:03:06