H
hgzy
Unregistered / Unconfirmed
GUEST, unregistred user!
我绝得DELPHI中SQL语言的格式有它自己的特点(很怪),和我买的书(轻松学SQL)中写的不兼容(都不知怎么办啦!),能附上资料者分最多,谢谢!
例如:1.从一个已存在的表(eqts)创建表(temp).
SQL>>create table temp(ks,js)
SQL>>as(select csdate,csdate from eqts);
or
SQL>>create table temp(ks,js)
SQL>>select csdate,csdate from eqts;
以上都不行。请指教!
2。在建表时DELPHI虽然提示错误:
>>"error creating cursor handle"
但我的表已经建好了!
SQL>>add('create table temp(ks char(10))');
请指教!
例如:1.从一个已存在的表(eqts)创建表(temp).
SQL>>create table temp(ks,js)
SQL>>as(select csdate,csdate from eqts);
or
SQL>>create table temp(ks,js)
SQL>>select csdate,csdate from eqts;
以上都不行。请指教!
2。在建表时DELPHI虽然提示错误:
>>"error creating cursor handle"
但我的表已经建好了!
SQL>>add('create table temp(ks char(10))');
请指教!