Convert Microsoft SQL Server to Bigquery
Paste code here or
Copy
Convert to Bigquery
Error? Regenerate
xxxxxxxxxx
--Paste your source SQL here
CREATE TABLE dbo.Survey_Question(
[SurveyId] [bigint] NOT NULL,
[QuestionId] [bigint] NOT NULL IDENTITY(1,1),
[QuestionSequence] [int] NOT NULL,
[Question] [varchar](1000) NULL,
[AnswerFormat] [varchar](10) NULL,
[Visibility_F] [bigint] NOT NULL,
[RowChangeTimestamp] [datetime] NOT NULL,
[Boilerplate_content] [varchar](100) NULL,
CONSTRAINT Survey_Questions_pk PRIMARY KEY (QuestionId)
);
x