python (65.1k questions)
javascript (44.2k questions)
reactjs (22.7k questions)
java (20.8k questions)
c# (17.4k questions)
html (16.3k questions)
r (13.7k questions)
android (12.9k questions)
Changing Entire Column to Date Type in SQL
I am trying to convert the datatype of a column Confirmation_Dateto date type but unable to to do so, the Column is of varchar type and SER_MUHAMMAD_MALLICK.user is the tablel. Iam using the following...
Biryanii
Votes: 0
Answers: 1
Generating DDL's using DBeaver through CLI
I'm looking for a way to automate the generation of DDL's from my database (Sybase IQ).
I found that DBeaver (Windows) can generate the DDL's and that it also has various CLI parameters to control DBe...
lamcro
Votes: 0
Answers: 0
Can DB2 DDL be generated using the IBM.Data.Db2 library
I'm new to Db2 and need to generate DDL for an existing table but don't have access to any tools. Is it possible to do this through the IBM.Data.DB2 library? I can get a datareader but only the fiel...
John Butler
Votes: 0
Answers: 1
Can PostgreSQL declare a procedure inside a procedure?
create or replace procedure procedure_1()
language plpgsql
as $$
declare
precedure procedure_2()
begin
select 1;
end
begin
select 1;
end; $$
Is there any way to declare a p...
wo4wangle
Votes: 0
Answers: 1