SQL と Oracle の構文の違いは次のとおりです: 1. データ型が異なります; 2. 現在のシステム時刻を取得する関数が異なります; 3. ユーザーを作成する方法が異なります; 4. 変数と文字列を接続する方法が異なります; 5. 変数と文字列を接続する方法が異なります。 5. 条件文「if...else...」の構文が異なる等
SQL と Oracle の構文の違いには、データ型の違い、現在のシステム時刻を取得するための関数の違い、Oracle にはデフォルトの制約がないこと、接続方法などが含まれます。変数と文字列が異なる、case ステートメントが異なるなど。
#データ型が異なる
#SQL サーバーのデータ型: int、smallint、char、 varchar、nchar、nvarchar、ntext、datetime、smalldatetime、money、decima、float、bit
Oracle データ型:number(p,s)、char、varchar2、Date、LOB
現在のシステムを取得します。 時間の関数は異なります。
sql サーバー: getdate()
oracle: sysdate
例: 関数set date format
to_char(sysdate,'yyy-mm-dd');
SQL サーバーにデフォルト制約を追加します:
alter table talbe_name add DF_table_name default('男') for sex;
Oracle にデフォルト値を追加します:
alter table table_name modify(sex default('男'));
##SQL サーバー媒体接続: " " 接続を使用します。例:
print 'aaaa'+@name;
dbms_output.put_line('aaa'||name);//name为变量
create sequence se_id start with 1 increment by 1
条件文の構文 if...else... 別の
sql サーバー:
if 条件 begin ………… end else begin ………… end
if 条件1 then …………; elsif 条件2 then …………; else …………; end if;
case 文の構文が異なります
sql サーバー内:
select ....case.....(else)....end....语句 select stuno '学号',case when grade>=90 and grade<=100 then '★★★★' when grade>=80 and grade<90 then '★★★' when grade>=70 and grade<80 then '★★' when grade>=60 and grade<70 then '★' else '差' end as '等级' from score go
declare nums number:=&nos;--&nos表示提示传入值 begin case nums when 100 then dbms_output.put_line('满分也,不错'); when 90 then dbms_output.put_line('90分页很不错了'); end case; end;
ユーザーの作成方法は異なります
SQL サーバー
create Login 登陆名称 with password='登陆密码'
alter Login 登陆名称 with name='新登录名称' and password='新登录密码'
ログイン アカウントの無効化/有効化
alter Login 登录名称 disable(禁用)/enable(启用)
drop Login 登录名称
create user 用户名 for/from Login 登陆名称
ユーザー名の変更
alter user 用户名 with name='新用户名'
ユーザー名の削除
drop user 用户名
認可制限
grant select/update/delete/insert on 表名 to 用户名
oracle:
ユーザー構文の作成
create user 用户名 identified by 密码 default tablespace users temporary tablespace temp quota 10M on users
パスワードの変更
alter user 用户名 identified by 新密码
権限の付与
grant create session to 用户名
drop user 用户名 cascade;
以上がSQLとOracleの構文の違いは何ですか?の詳細内容です。詳細については、PHP 中国語 Web サイトの他の関連記事を参照してください。