Menu
Menu
DaniWeb
Log In
Sign Up
Read
Contribute
Meet
Search
Search
About 1,000 results for
create-table-query
- Page 1
Re: Question/Answering over SQL Data Using LangGraph Framework
Programming
Computer Science
1 Month Ago
by Pelorus_1
Through its combination of natural language processing and structured
query
generation, LangGraph makes interfacing with databases and extracting insights over SQL data easier than ever.
Create Table Query Msaccess
Programming
Software Development
10 Years Ago
by rajit_1
Create
Table
Query
Msaccess Is it possible that through any software i can … which i can get sql Codes for creating those 20
table
struture ?
Constructing create table query from the meta info of multiple rows
Programming
Databases
12 Years Ago
by network18
…iterate through them, to construct "
create
table
query
" as a string - end inner…ID = @tbl_id order by COLUMN_DEFAULT GO --
CREATE
TABLE
#plan( NEW_COL varchar(40) NOT NULL, …operations using this current tbl name SET @
query
= '
CREATE
TABLE
TBL' INSERT INTO #plan EXEC CREATE_TBL @…
Re: Constructing create table query from the meta info of multiple rows
Programming
Databases
12 Years Ago
by network18
… still as need to construct a string (part of a
create
table
query
) like "col1 varchar (20) " etc It would be… part of the whole string as - "
create
table
tbl_name( col1 int , col2 varchar (20) not null)" eventually…
Create Table with name being the last primary key generated
Programming
Databases
13 Years Ago
by strongpot
…of $name, in the
CREATE
TABLE
query
the darn thing breaks, meaning no
table
is created. The rest … = mysql_insert_id(); echo $newid; // creates new
table
mysql_query ("
CREATE
TABLE
$newid ( id INT NOT NULL PRIMARY KEY … // inserts last entered unique id to the new
table
mysql_query("INSERT INTO $newid VALUES ('id', '$…
error ERROR 1005 (HY000): Can't create table 'jfunchio.rental' (errno: 150)
Programming
Databases
14 Years Ago
by jfunchio
…could help me figure out what is wrong with my
create
table
query
. Also if anyone has any tips to make my code…(20), email varchar(50), primary key (customer_id) ) ENGINE = InnoDB;
create
table
movie ( movie_id varchar(8), movie_genre varchar(20), release_year numeric(4…
Creating Table query through Windows Form Application
Programming
Databases
13 Years Ago
by Z33shan
… my Windows form application. i'm having problem with
create
table
query
, with variable
table
name. i have tried, but it din't work… = "newyork"; and city should be the name of
table
in example. Thanks :)
pass table name from textbox to create table query
Programming
Databases
14 Years Ago
by Josef01
I would like to know how to a use a text box in winform to name the
table
. can anybody help me please I am using the following statement to
create
table
SQL = "
CREATE
TABLE
tbCatalogue ([Id] COUNTER, [Stock Code] TEXT(10), [Account Number] TEXT(6))"
Re: pass table name from textbox to create table query
Programming
Databases
14 Years Ago
by tomato.pgn
As i presumes you want to
create
table
using any of the field like textbox or combobox....… [CODE] <form method="POST"> Enter
table
name<input type="text" name="t_name… if(isset($_POST['t_name'])) { //database connection string SQL = "
CREATE
TABLE
".$_POST['t_name']."([Id] COUNTER, [Stock Code] TEXT(10…
Re: Create Table with name being the last primary key generated
Programming
Databases
13 Years Ago
by strongpot
… that mysql generated $newid = mysql_insert_id(); echo $newid; // creates new
table
mysql_query ("
CREATE
TABLE
$newid ( id INT NOT NULL PRIMARY KEY AUTO_INCREMENT, merchid… NOW())"); // inserts last entered unique id to the new
table
mysql_query("INSERT INTO $newid VALUES ('id', '$newid', 'custid', 'modified…
Re: Create Table Query Msaccess
Programming
Software Development
10 Years Ago
by joyaguilar
you can definetely make a back up of your ms database so that it can be shared without making it an executable program, just a back up, i tried importing it using .sql file then retrieve it using a software that u want to have it executed.
Re: Constructing create table query from the meta info of multiple rows
Programming
Databases
12 Years Ago
by network18
… empty strings, which solved the issue and I could
create
a proper
query
in the string format, besides I have added identity… all, can I use Common
table
expression to achive the same goal?? Do I need to
create
a fresh thread to address…
Re: Constructing create table query from the meta info of multiple rows
Programming
Databases
12 Years Ago
by pritaeas
It should be possible. You are filling the temp
table
with the results from a
query
. If you can just loop those results, you can build your
query
from that directly.
Re: Constructing create table query from the meta info of multiple rows
Programming
Databases
12 Years Ago
by network18
…you please elaborate with modifying some code. I used temp
table
to store set of rows , so that I could …the procedure itself, to include CTE in it for each
table
id passed to it, and iterate over the result …CTE inside the procedure itself, and return back the constructed
query
string to the calling cursor. could you please elaborate, about…
Re: Constructing create table query from the meta info of multiple rows
Programming
Databases
12 Years Ago
by network18
CREATE_TBL would return the result set like below for given
table
id - NEW_COL DATA_TYPE COLUMN_DEFAULT IS_NULLABLE size IS_IDENTITY BP_NR int NULL NO NULL BP_NR BP_POSNR tinyint NULL NO NULL NULL BP_MENGE tinyint NULL NO NULL NULL It would return the meta info for any gievn
table
's object id
Re: sql create table query
Programming
Databases
12 Years Ago
by akmozo
…, No, you can not use double quotes while creating a
table
.
Create
a
table
:
create
table
your_table ( id int(11) NOT NULL, name varchar(50…) NOT NULL, PRIMARY KEY(id) ); Insert data into the
table
: insert into…
Re: sql create table query
Programming
Databases
12 Years Ago
by Sravani saka
hey thanq for ur help.. but i tried with double quotes, and it worked.. it is like this
create
table
cust_info(id number, "name" varchar2(50))//i think double quotes is optional insert into cust_info(1,'Bill')
create table when user creates account?
Programming
Software Development
13 Years Ago
by teambiohazard
…myCommand.Connection = conn myCommand.CommandText = sqlquery 'start
query
registerfinal.SelectCommand = myCommand myData = myCommand.ExecuteReader() …to add the
create
table
?? I need a
table
which contains the folllowing data: [CODE]
CREATE
TABLE
`test_addtable`.`username**`…
create table
Programming
Databases
13 Years Ago
by Arjun_Sarankulu
I have an application in which user will put the
query
in text box and will get the output in gridview … that i will be taking
query
from textbox and store in one variable I need to
create
table
with two columns 1)username… 2)
query
But
query
can be bigger and i am…
Create table error (probably syntax)
Programming
Databases
13 Years Ago
by epicrevolt
… database on previous lines, now i'm trying to
create
a
table
. The error I get is: [QUOTE]You have… that the
query
below starts on line 22 and line 2 is blank. [CODE=php] mysql_query("
CREATE
TABLE
users( userid…('<span style="color:red">Could not
create
table
users in ' . $dbname . ': ' . mysql_error() . '</span><…
create table help
Programming
Databases
12 Years Ago
by hwoarang69
trying to
create
table
in Access2007.
CREATE
TABLE
user (id Text(8), last Text(25), first Text(20), class Text(10), dob DateTime); but
table
is not being created. ERROR:
query
must have at least one destination field.
create table from another in database with vb.net
Programming
Software Development
11 Years Ago
by gayzlein
I want to
create
a
table
in my database Access from another
table
already existing with vb.net this is my
query
:
CREATE
TABLE
table_name SELECT as PRODUCT_NAME, PRICE FROM TABLE1 GROUP BY PRODUCT_NAME if someone can help me I would be grateful
create a query in access from vb6
Programming
Software Development
19 Years Ago
by mstangeh
hi, I need to
create
or replace a permanent
query
in access (like a view in oracle, postgres...), but from … this dim obj as new adodb.connection ... ... obj.execute "
create
table
......:" but, how to
create
the views????? thanks mstangeh
Re: create table help
Programming
Databases
12 Years Ago
by BitBlt
… alternative, you should enclose every column name (and probably the
table
name) in square brackets. This will force the Jet engine… as tokens rather than reserved words. So, your
query
would look like this:
CREATE
TABLE
[user] ([id] Text(8), [last] Text(25), [first…
Re: Create table error (probably syntax)
Programming
Databases
13 Years Ago
by epicrevolt
…quot;]PRIMARY KEY[/COLOR]. [code=php] mysql_query("
CREATE
TABLE
users( userid INT(11) NOT NULL AUTO_INCREMENT PRIMARY KEY…('<span style="color:red">Could not
create
table
users in ' . $dbname . ': ' . mysql_error() . '</…;<span style=\"color:green\">
Table
has been successfully created!</span><…
Re: create a query in access from vb6
Programming
Software Development
15 Years Ago
by Ben-Jammin
… but I was just wondering if anybody knows how to
create
a
query
from the information inputted in textboxes/comboboxes in VB08… system in Access but I need to be able to
create
queries through the information the user inputs in the VB…
Re: create table from query output
Programming
Databases
11 Years Ago
by diafol
CREATE
TABLE
?? From here... http://answers.oreilly.com/topic/158-how-to-save-
query
-results-in-a-mysql-
table
/
Re: Creating Table query through Windows Form Application
Programming
Databases
13 Years Ago
by Z33shan
heres the
query
that i have used: "
create
table
'" + new_city + "' (ID AUTONUMBER, population TEXT, area TEXT)"; try to mention adding primary key constraint aswell. thanks :)
Re: pass table name from textbox to create table query
Programming
Databases
14 Years Ago
by smantscheff
… will have to check first if the
table
already exists, maybe include a DROP
TABLE
statement, sanitize the input so that no…
Re: Create Table with name being the last primary key generated
Programming
Databases
13 Years Ago
by smantscheff
mysql_insert_id is an integer. You cannot have database,
table
or field names beginning with numerals. Prefix the
table
name with some literal constant.
1
2
3
17
Next
Last
Search
Search
Forums
Forum Index
Hardware/Software
Recommended Topics
Programming
Recommended Topics
Digital Media
Recommended Topics
Community Center
Recommended Topics
Latest Content
Newest Topics
Latest Topics
Latest Posts
Latest Comments
Top Tags
Topics Feed
Social
Top Members
Meet People
Community Functions
DaniWeb Premium
Newsletter Archive
Markdown Syntax
Community Rules
Developer APIs
Connect API
Forum API Docs
Tools
SEO Backlink Checker
Legal
Terms of Service
Privacy Policy
FAQ
About Us
Advertise
Contact Us
© 2025 DaniWeb® LLC