博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
access oarcle
阅读量:5102 次
发布时间:2019-06-13

本文共 809 字,大约阅读时间需要 2 分钟。

1 默认值
2 自动增加字段
3 now() time() date() 更改sysdate
4 datediff
5 保留字 date 名字段
6isnull(rowname)要改成rowname = null
7CursorType要改成1,也就是打开数据库时要给出第一个数字参数为1,否则记录可能显示不完整
8备注类型要通过cast(column as varchar)来使用
9true/false类型不能使用,要变为1/0
10:"delete * from user where id=10", "delete user where id=10"
11在对ACCESS数据库处理中,sql语句中直接可以用一些VB的函数,像cstr()函数,而对SQL SERVER数据库处理中,却不能用
12在access的sql语句中的时间使用变量查询的时候,大家一般使用"select * from aaaa while time=#"&变量名&"#",在mssql中是不行的,他的语法是“select * from aaaa while time=’"&变量名&"’"”。
13有可能rs.update失败,修改成update 表名 set 字段=‘值’ 这样通过
14access里面除法可以使用"\"或者"/",MSSQL里面只能使用"/"
15在SqlServer中建立主键

16Oracle:nvl SqlServer:isnull

17sql语句中的+,改为||

18Oracle:to_date('2010-12-21 12:02:30','YYYY-MM-DD HH24:MI:SS')

过程

1 更改默认值

 

posted on
2016-07-13 10:35 阅读(
...) 评论(
...)

转载于:https://www.cnblogs.com/mingjing/p/5665984.html

你可能感兴趣的文章
poj2752 Seek the Name, Seek the Fame
查看>>
Illustrated C#学习笔记(一)
查看>>
理解oracle中连接和会话
查看>>
HDU 5510 Bazinga KMP
查看>>
[13年迁移]Firefox下margin-top问题
查看>>
Zookeeper常用命令 (转)
查看>>
Bootstrap栅格学习
查看>>
程序员的数学
查看>>
聚合与组合
查看>>
洛谷 P2089 烤鸡【DFS递归/10重枚举】
查看>>
我眼中的技术地图
查看>>
lc 145. Binary Tree Postorder Traversal
查看>>
android dialog使用自定义布局 设置窗体大小位置
查看>>
ionic2+ 基础
查看>>
[leetcode]Minimum Path Sum
查看>>
Aizu - 1378 Secret of Chocolate Poles (DP)
查看>>
IO流写出到本地 D盘demoIO.txt 文本中
查看>>
Screening technology proved cost effective deal
查看>>
mysql8.0.13下载与安装图文教程
查看>>
Thrift Expected protocol id ffffff82 but got 0
查看>>